#CSS
目录:
层叠样式表 (Cascading Style Sheets)
包含选择器和一条或多条声明。
(External style sheet)
<link>
标签链接到样式表,如:<link rel="stylesheet" type="text/css" href="mystyle.css">
。(Internal style sheet)
<style>
标签在文档头部定义内部样式表。<style> p{text-align:center;} </style>
。(Inline style)
<p style="text-align:center;">段落</p>
。如果某些属性在不同的样式表中被同样的选择器定义,那么属性值将从更具体的样式表中继承。
优先级:
注: