CSS能检测出元素的子元素数量吗?我可能在回答我自己的问题,但我非常好奇。我知道CSS可以选择父容器的单个子元素,但是如果它的父容器有一定数量的子容器,那么是否支持对其子容器的样式进行样式设置。例如container:children(8) .child {
//style the children this way if there are 8 children}我知道这听起来很奇怪,但我的经理让我检查一下,我自己还没有找到任何东西,所以我决定在结束搜索前求助于此。
3 回答
慕标琳琳
TA贡献1830条经验 获得超9个赞
:only-child
:only-child
children(1)
:nth-child
:nth-child
p:nth-child( n + 8 ){ /* add styles to make it pretty */}
编辑
:empty
和 :not
:not
div:not(:empty) { /* We know it has stuff in it! */}
- 3 回答
- 0 关注
- 4686 浏览
相关问题推荐
添加回答
举报
0/150
提交
取消