代码改变世界

在网页中插入css的方式

2011-10-30 01:02  youxin  阅读(426)  评论(0)    收藏  举报

在网页中插入css,有如下3种方式

CSS saves a lot of works

1:内联样式表 inline

<body style=”color:red “> suming </body>

 

2:内部样式表 internal

在<head> css </head>内增加css

<head>

<style type=”text/css “>

 

</style>

</head>

 

3:外部样式表 external style sheet

链接到外部的css文件

<head>

<link rel=”stylesheet” type=”text/css” href=”url.css”>

</head>

 

he file should not contain any html tags.