结合css和xhtml

link标记

link必须放在head元素中,但不能放在其他元素内部(如title)。

属性

rel代表“关系”

href样式表的URL

media样式表要应用于的表现媒体

<link rel="stylesheet" type="text/css" href="sheet1.css" media="all" />

style元素

style元素一定要使用type属性;对于css文档,正确的type属性值是“text/css”。

@import

放在其他css规则之前,否则将根本不起作用。

<style type="text/css"> @import url(styles.css);

h1 {color:gray;}

</style>

内联样式

 <p style="color:gray;">123</p>

上班的路上,有阳光,有鸟叫,美好的一天又开始了。

原文地址:https://www.cnblogs.com/Zara/p/6385281.html