此问题与此Can CSS detect the number of children an element has?
类似但是我需要设置样式容器的样式: HTML:
<ul>
</ul>
CSS:
.selector:before {
content: "Empty list";
color: red;
}
对于空元素的情况我可以使用:空伪类,但是如果我想要具有N个子元素的元素的特殊样式呢?
答案 0 :(得分:1)
目前无法通过使用CSS的孩子选择父母。