如何删除 h 标签上的填充/边距?
我 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不要忘记可以为布局添加“无声”空间的隐式换行符:
需要是:
Don't forget implicit line breaks that can add "silent" space to layouts:
would need to be:
给你:
HTML
CSS
Here you go:
HTML
CSS