使用CSS Attribute Selector选择Grandchild

时间:2015-03-14 10:49:39

标签: html5 css3

CSS我可以调整,HTML 必须使用。



.first [class="tag"] {
  background-color: #ffffff;
}

<!--Entire width & height of page-->
<div class="first">
  <!--Only a portion of width & height of page-->
  <div class="second">
    <div class="tag">
    </div>
  </div>
</div>
&#13;
&#13;
&#13;

我需要在包含标记 ID的每个页面上更改第一个类的背景颜色。我创建的CSS只能根据需要选择第一个孩子而不是孙子。有什么建议?喜欢CSS解决方案,但不是必需的。谢谢,我很感激。

1 个答案:

答案 0 :(得分:0)

我现在看到目前没有CSS解决方案。谢谢你们。

https://css-tricks.com/parent-selectors-in-css/