CSS 获取标题正下方的段落
我想在标题下方添加段落文本。我将两者的 margin 和 padding 都设置为 0,但它们之间仍然有很小的差距。为什么?谢谢。
I would like to have paragraph text right under the headline. I set margin and padding to 0 for both, but there is still small gap between them. Why? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
还添加一个边框进行测试:
also add a border for testing:
它来自标题的行高属性。
试试这样:
It is from the line-height property of the headline.
Try it like this:
确保删除上面标题的底部填充和边距,并且应该设置
我已在段落标记中添加了填充底部,以便您可以在每个
标记之间进行分隔。
Make sure that you remove the bottom padding and margin for the heading above and you should be set
I've added a padding-bottom to the paragraph tags so you can have separation between each
<p>
tag.