垂直对齐无法正常工作

发布于 2025-01-04 08:31:17 字数 234 浏览 0 评论 0原文

现场演示: http://jsfiddle.net/9Y7Cm/1/

我想要放置文本在图像高度的 50% 处 - 所以就在盒子的中间。

我在SO和谷歌上搜索了很多 - 有很多这样的问题,但彼此都是关于另一个问题...我尝试过人们给出的解决方案,但没有一个有效,所以这就是为什么我问你在这里寻求任何解决方案!

Live demo: http://jsfiddle.net/9Y7Cm/1/

I want the text to be placed at the 50% of the image height - so just in the middle of the box.

I was searching a lot on SO and google - there are a lot of questions like this, but each other is about another problem... I was tried the solutions given by people but none of them worked so thats why I'm asking you here for any solution!

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

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

发布评论

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

评论(2

冷清清 2025-01-11 08:31:17

只需在 img 上设置 vertical-align: middle 即可。

http://jsfiddle.net/9Y7Cm/2/

Just set vertical-align: middle on the img.

http://jsfiddle.net/9Y7Cm/2/

青朷 2025-01-11 08:31:17

将以下内容替换为以下内容:

#column-content {
    display: table-cell;
    border: 1px solid red;
    padding: 10px;
}

img{
    vertical-align:middle;
}

这是您想要居中的图像。

replace the following with these:

#column-content {
    display: table-cell;
    border: 1px solid red;
    padding: 10px;
}

img{
    vertical-align:middle;
}

it's the image you want to center.

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