标签:style blog color strong div html log htm
1.选择器的分类:
1 h1,h2,h3,h4 { 2 color:red; 3 }
2.派生选择器:
1 li strong{ 2 color:red; 3 }
3.id选择器:
1
1 #red{ 2 color:red; 3 } 4 #green{ 5 color:green; 6 }
8 9 HTML: 10 <p id="red">I am red</p> 11 <p id="green">I am green</p>
4.类选择器:
所有class="center"的颜色均为红色
1 .center{ 2 color:red; 3 }
5.属性选择器:
所有title属性的均为红色:
1 [title] 2 { 3 color:red; 4 }
标签:style blog color strong div html log htm
原文地址:http://www.cnblogs.com/mvpchenjian/p/3925176.html