开发者

How do you align the vertical center of text to the vertical center of an image?

开发者 https://www.devze.com 2023-03-24 04:58 出处:网络
How do you align the vertical center of text to the vertical center of an im开发者_如何学JAVAage? It appears to me that the following code only makes the baseline of the text align to the vertical cen

How do you align the vertical center of text to the vertical center of an im开发者_如何学JAVAage? It appears to me that the following code only makes the baseline of the text align to the vertical center of the image. I would like to have a physical sense of balance.

http://jsfiddle.net/tokyotech/TBbJF/

Output

How do you align the vertical center of text to the vertical center of an image?

HTML

<img src="image.png" />
<span>Foo</span>

CSS

img {
    vertical-align: middle;
}

span {
  font-size: 3em;   
}


You haven't given the text a vertical align of middle. Add vertical-align: middle; to the span css and it should work.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号