CSS中級教程 組合與嵌套

來源:互聯網
上載者:User

組合
你不必重複有相同屬性的多個選擇符,你只要用英文逗號(,)隔開選擇符就可以了。
比如,你有如下的代碼:

 代碼如下 複製代碼
h2 { 
color: red; 

.thisOtherClass { 
color: red; 

.yetAnotherClass { 
color: red; 

則你可以這樣寫:
h2, .thisOtherClass, .yetAnotherClass { 
color: red; 
}

 
嵌套
CSS結構好的話,沒有必要使用過多的類或者標識選擇符。這是因為你可以指定在選擇符內的選擇符。(或者更好的說法,上下文選擇符--譯者著)
比如:

 代碼如下 複製代碼
#top { 
background-color: #ccc; 
padding: 1em 

#top h1 { 
color: #ff0; 

#top p { 
color: red; 
font-weight: bold; 

這就減去不必要的類或者標識選擇符,如果應用到像這樣的HTML中:

 代碼如下 複製代碼
<div id="top"> 
<h1>Chocolate curry</h1> 
<p>This is my recipe for making curry purely with chocolate</p> 
<p>Mmm mm mmmmm</p> 
</div> 

這是因為,用英文半形空格間隔選擇符,我們指明了在標識id內的h1有“#ff0”的顏色,而p則是紅色red和粗體bold。
這可能也會有些複雜(因為可能不止兩級,比如在內在內在內在內等等)。你有必要多加練習。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.