CSS 获取标题正下方的段落

发布于 2024-09-24 15:30:55 字数 72 浏览 6 评论 0原文

我想在标题下方添加段落文本。我将两者的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

动听の歌 2024-10-01 15:30:55
line-height:1em;

还添加一个边框进行测试:

border:1px solid #f00;
line-height:1em;

also add a border for testing:

border:1px solid #f00;
臻嫒无言 2024-10-01 15:30:55

它来自标题的行高属性。

试试这样:

<h1 style="margin:0; padding:0; line-height:1em;">Heading</h1>
<p style="margin:0;">Paragraph</p>

It is from the line-height property of the headline.

Try it like this:

<h1 style="margin:0; padding:0; line-height:1em;">Heading</h1>
<p style="margin:0;">Paragraph</p>
匿名的好友 2024-10-01 15:30:55

确保删除上面标题的底部填充和边距,并且应该设置

<style>
.h2 { margin-bottom:0px; padding-bottom:0px; }
p { margin:0px; padding:0px 0px 15px 0px; }
</style>

我已在段落标记中添加了填充底部,以便您可以在每个

标记之间进行分隔。

Make sure that you remove the bottom padding and margin for the heading above and you should be set

<style>
.h2 { margin-bottom:0px; padding-bottom:0px; }
p { margin:0px; padding:0px 0px 15px 0px; }
</style>

I've added a padding-bottom to the paragraph tags so you can have separation between each <p> tag.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文