如果我有标记:
<div class="a b"></div>
.a 类有一个与之关联的悬停类
并且 .b 类有一个与之关联的伪元素......就像这样:
div
{
width: 100px;
height: 100px;
}
.a { background: red; display: inline-block; }
.a:hover { background: green; }
.b:after
{
content: '';
display: inline-block;
width: 100px;
height: 100px;
margin-left: 100px;
background: pink;
}
是否可以使用 css 防止伪元素触发 .a 类悬停?