Vertically align text next to an image
Posted: 02 Feb 2015, 17:20
Hello
I have the following html code. I try to center vertically a text next to an image, both into a Div.
If I add "vertical-align: top;" it does work, the text is displayed on top. Why won't "vertical-align: middle;" work?
I have the following html code. I try to center vertically a text next to an image, both into a Div.
Code: Select all
<div>
<img src="image.jpg" style="width:200px; height:65px" />
<span style="vertical-align: middle">Doesn't work.</span>
</div>