简单 div 内的垂直对齐

发布于 2024-10-22 18:18:33 字数 309 浏览 5 评论 0原文

这是一个非常简单的问题,但在网上冲浪几个小时后,我意识到我可能没有理解这个概念。

我有:

<style>
 #more{width:190px; height:44px; border:1px solid #CCCCCC; padding-bottom:3px;vertical-align:middle;}
</style>

 <div id='more'> My text </div>

这不会使“我的文本”垂直居中。如何使文本垂直居中?

感谢一百万

This is a very simple question, but after a few hours surfing the web I've realized that probably I'm not getting the concept.

I have:

<style>
 #more{width:190px; height:44px; border:1px solid #CCCCCC; padding-bottom:3px;vertical-align:middle;}
</style>

 <div id='more'> My text </div>

This does not center the "My text" vertically. How can I center the text vertically?

Thanks a million

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

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

发布评论

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

评论(2

怀中猫帐中妖 2024-10-29 18:18:33

我会使用等于 div 高度的 line-height

line-height: 44px;

注意:这仅适用于单行文本。

I would use line-height equal to the height of your div.

line-height: 44px;

NB: this will only work on text in a single line.

衣神在巴黎 2024-10-29 18:18:33

您需要使用 display: table-cell; 才能使文本垂直居中。

Jsfiddle 演示。

You need to use display: table-cell; to be able to center the text vertically.

Jsfiddle demo.

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