CSS:last-child:not(:only-child)没有按预期工作

前端之家收集整理的这篇文章主要介绍了CSS:last-child:not(:only-child)没有按预期工作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
目前,我有这个选择器:
.form .mid td p:last-child:not(:only-child) {
    margin-bottom: 0; 
}

它没有按预期工作.如果TD内有多个P,我想删除保证金

解决方法

如果你的td包含的不仅仅是p个元素(我无法分辨,因为你没有显示你的标记),你可能想要使用:last-of-type和:only-of-type:
.form .mid td p:last-of-type:not(:only-of-type) {
    margin-bottom: 0; 
}
原文链接:https://www.f2er.com/css/216075.html

猜你在找的CSS相关文章