[CSS] 選取器

[CSS] 選取器

  • 標籤選取器:定義XHTML標籤樣式

對多個選取器定義相同樣式 
h1, h2, h3 { font-size:14px; }

 

 對子元素設定樣式
 div p{ background-color:green; }