對於這個代碼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
?
對於這個代碼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
?
你可以試試這個:
.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>
謝謝,只是出於好奇才是'.content#dogs'相當於'#dogs.content'? – user784637 2012-02-20 23:50:38
是的:) http://jsfiddle.net/U4RF4/1/ – 2012-02-20 23:52:29
爲什麼你就不能使用'#dogs'?不應該有任何其他元素的ID爲「狗」,因爲ID必須是唯一的。 – thirtydot 2012-02-21 00:39:25