我想在一個ID爲mousehover的元素上應用一些CSS到另一個類中的元素。我不想使用JS。父容器外部的CSS選擇器
例子:
<div class="parent">
<div id="parent_1">parent_1</div>
<div id="parent_2">parent_2</div>
<div id="parent_3">parent_3</div>
</div>
<div class="another_parent">
<div id="another_parent_1">another_parent_1</div>
<div id="another_parent_2">another_parent_2</div>
<div id="another_parent_3">another_parent_3</div>
</div>
<style>#parent_3:hover #another_parent_3 {color: red;}</style>
的jsfiddle:http://jsfiddle.net/CvT6U/
沒有,因爲'#another_parent_3'被包含在比'#parent_3'單獨的容器中。如果沒有父母,那將是有效的。我建議你在JSFiddle中試試這個問題。 – ShadowCat7