如何在本文档中选择不在具有.todeep类的元素内的图像?在下面的情况下,应选择第二个和第三个元素。 我不知道在“todeep”元素之后图像会有多深。
<body>
<div class="todeep">
<img>
</div>
<div>
<img>
<div>
<img>
<div class="todeep">
<img>
<div>
<img />
</div>
</div>
</div>
</div>
</body>
我首先想到了一个简单的解决方案:*:not(.todeep)img,但这也会选择在祖先中也有非“深入”元素的图像。
答案 0 :(得分:4)
您必须选择所有图片,然后否定拥有.todeep
父母的图片。
所以而不是
img { background-color: blue; width: 20px; height: 20px; }
*:not(.todeep) img { background-color: red; }
使用
img { background-color: red; width: 20px; height: 20px; }
.todeep img { background-color: blue; }
(从你的jsfiddle借来的示例代码)