在CSS中以固定高度垂直居中标题

发布于 2024-07-08 21:43:52 字数 218 浏览 9 评论 0原文

我有一个标题,

<h1>My Header</h1>

它的高度为 150pxfont-size1.3em; 如何使用 CSS 使标题文本垂直居中。 我宁愿不将其包装在容器 DIV 中(包装 div 确实破坏了整个 CSS 想法)。

I have a header

<h1>My Header</h1>

It has a height of 150px and a font-size of say 1.3em;
How can I make the header text vertically centered with CSS.
I would rather not wrap it in a container DIV (wrapping divs really defeat the whole CSS idea).

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

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

发布评论

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

评论(2

无人接听 2024-07-15 21:43:52

最好的方法是添加这个规则:

h1 {
    line-height: 150px;
}

不需要设置高度值,并且字体大小不会影响垂直对齐。

The best way is to add this rule:

h1 {
    line-height: 150px;
}

You don't need to set the height value, and the font size doesn't affect the vertical align.

以可爱出名 2024-07-15 21:43:52

如果标题的高度是150px,你可以将line-height也设置为150px吗?

h1
{
    font-size: 1.3em;
    line-height: 150px;
    height: 150px;
}

If the height of the title is 150px, could you also set the line-height to 150px?

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