我有一块笨拙的 CSS 用于设置元素的第一个子元素的边距顶部。第一个孩子可以是任何标签。
.comment-description p:first-child,
.comment-description ol:first-child,
.comment-description ul:first-child,
.comment-description pre:first-child,
.comment-description blockquote:first-child
{
margin-top:0px;
}
我确信我可以把它砍下来,但由于我不经常设计,我不记得有更好的方法。我可以使用类似的东西:
.comment-description *:first-child
{
margin-top:0px;
}
不幸的是,这不起作用。