欢迎来到DIVCSS5查找CSS资料与学习DIV CSS布局技术!

1、外联式:通过link标签,链接到外部样式表到页面中。

<link rel="stylesheet" type="text/css" href="css/main.css">

2、嵌入式:通过style标签,在网页上创建嵌入的样式表。

<style type="text/css">
 div{ width:100px; height:100px; color:red }
 ......
</style>

3、内联式:通过标签的style属性,在标签上直接写样式。

<div style="width:100px; height:100px; color:red ">......</div>

如需转载,请注明文章出处和来源网址:http://www.divcss5.com/rumen/r58684.shtml