标签:cascading cad code pre 层叠样 样式 style 类型 href
Cascading Style Sheets,CSS,层叠样式表。
注释:/**/
1、内联样式
<p style="color:red;line-height=15px">这是一个段落</p>
2、内部样式表
<style>
p{color:red;line-height=15px}
<style>
3、外部样式表
<link rel="stylesheet" type="text/css" href="index.css"/>
1、id选择器
#p1
2、class选择器
.leftDiv
3、元素类型选择器
p
优先级:内联>id>class>元素类型
标签:cascading cad code pre 层叠样 样式 style 类型 href
原文地址:https://www.cnblogs.com/heibaimao123/p/13802454.html