2012-02-20 86 views
0

對於這個代碼CSS語法選擇類通過其ID標識的元素的

<div id="dogs" class="content">hello</div> 
<div id="frogs" class="content">hello</div> 
<div id="hogs" class="content">hello</div> 
<div id="logs" class="content">hello</div> 

如何從具有ID狗的元素選擇該類content

+0

爲什麼你就不能使用'#dogs'?不應該有任何其他元素的ID爲「狗」,因爲ID必須是唯一的。 – thirtydot 2012-02-21 00:39:25

回答

2

你可以試試這個:

.content#dogs { 
 
    font: bold 28px sans-serif; 
 
    color: #800000; 
 
}
<div id="dogs" class="content">hello</div> 
 
<div id="frogs" class="content">hello</div> 
 
<div id="hogs" class="content">hello</div> 
 
<div id="logs" class="content">hello</div>

+0

謝謝,只是出於好奇才是'.content#dogs'相當於'#dogs.content'? – user784637 2012-02-20 23:50:38

+0

是的:) http://jsfiddle.net/U4RF4/1/ – 2012-02-20 23:52:29

相關問題