垂直对齐无法正常工作
现场演示: 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需在
img
上设置vertical-align: middle
即可。http://jsfiddle.net/9Y7Cm/2/
Just set
vertical-align: middle
on theimg
.http://jsfiddle.net/9Y7Cm/2/
将以下内容替换为以下内容:
这是您想要居中的图像。
replace the following with these:
it's the image you want to center.