<div class="g-father">
父元素
<!-- 没有 focus 事件的 .g-children 元素 -->
<div class="g-children" tabindex="-1">Click</div>
</div>
div {
padding: 30px;
border: 1px solid #ddd;
}
.g-children {
text-align: center;
cursor: pointer;
background: #fff;
&:hover {
background: #eee;
}
}
.g-children:focus {
outline: none;
}
.g-father:focus-within {
background: #fc0;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.