如何删除 h 标签上的填充/边距?

发布于 2024-11-28 13:44:19 字数 199 浏览 0 评论 0原文

我 99% 确信我没有忽略这里的某些东西。我完成了通常的重置,h 标签上没有边距或填充,line-height:100% 等,但 h 标签上方和下方仍然有大约 2 或 3px 的填充。大多数主要网站都是一样的,所以我猜这是不可避免的?这似乎是一个有争议的问题,但它稍微扰乱了我的对齐方式。

那么,是否存在一些不可避免的问题,即无论您做什么,所有字体周围都有轻微的填充?

I'm 99% sure I'm not overlooking something here. I have the usual resets done, no margin or padding on the h tag, line-height:100% etc etc. but STILL there are about 2 or 3px padding above and below the h tags. It's the same on most major sites, so I'm guessing it's prob unavoidable? It may seem like a moot point, but it's SLIGHTLY messing up my alignment.

So is there some unavoidable issue where all fonts have slight padding around them no matter what you do?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

难忘№最初的完美 2024-12-05 13:44:19

不要忘记可以为布局添加“无声”空间的隐式换行符:

<h1>blah blah</h1>[space character here due to line break]
<h1>blah blah</h1>

需要是:

<h1>blah blah</h1><h1>blah blah</h1>

Don't forget implicit line breaks that can add "silent" space to layouts:

<h1>blah blah</h1>[space character here due to line break]
<h1>blah blah</h1>

would need to be:

<h1>blah blah</h1><h1>blah blah</h1>
苦妄 2024-12-05 13:44:19

给你:

HTML

<div id="blah"> <div style="width:300px; margin:0px auto 0px auto;"><h1 style="color:#000000;font-size:12px; display:inline">This is my heading</h1></div> </div>

CSS

#blah
{
height:50px;
width:100%;
background-color:#B40700;
}

Here you go:

HTML

<div id="blah"> <div style="width:300px; margin:0px auto 0px auto;"><h1 style="color:#000000;font-size:12px; display:inline">This is my heading</h1></div> </div>

CSS

#blah
{
height:50px;
width:100%;
background-color:#B40700;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文