正如标题所说,这个片段:
.group {
width: 100px;
height: 100px;
background-color: blue;
}
.group:empty {
background-color: red;
}
.hideme {
display: none;
}
<div class="group">
<div class="hideme">
hello
</div>
</div>
未能给出红色背景。:empty
如果有孩子的话,是否有替代品display:none
?