如何从第一个
中删除上边距
之后的段落和的上边距当它出现在
之后?
如何在
之后的第一个
段落的顶部边距?如果任何
h2
出现在 p
之后,则 p
不应该有下边距,或者 h2
不应该有上边距
我有
h2
p
h2
p
How to top margin from first <p>
paragraph after <h2>
? and if any h2
comes after p
then either p
should not have bottom margin or h2
should not have top margin
I have
h2
p
h2
p
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用这个:
+
是相邻同级选择器。 IE7+ 和所有现代浏览器都支持它。
以完全相同的方式再次使用
+
..您甚至可以将它们组合起来:
Use this:
+
is theadjacent sibling selector. It's supported in IE7+ and all modern browsers.
Using
+
again in exactly the same way..You can even combine them:
使用此选择器:
Use this selector:
尝试
然后在你的CSS中编写
然后对于你放置在h1下的每个p你可以添加类noTop(或你选择的另一个类)
try
and then in your css you write
And then for every p you place under a h1 you can add the class noTop (or another class of your choice)
向其中添加一个类,例如块
CSS:
Add a class to it, say block
CSS: