我有这个 html 代码:
<div class='ui'>
<h3 class='title'>
<a href='#'>Link to Header</a>
</h3>
</div>
<a href='#'>Another link</a>
我想为所有锚 a 设置 CSS 样式,但不是为 div.ui 的父 h3 元素中的那个。我无法将类添加到锚 a 到 h3 元素中。
我试试这个:
a:not(:parent:parent.ui){color:#dedede;}
但这不起作用。有什么解决办法吗?