This is what I'm trying to do:
Make the icon vertically centered inside div and the text vertically centered too!
I tried this:
<div id="mainDiv">
<div id="top">
<span><img src="path/img.png" class="myImage" /></span>
<span>My Title</span>
</div>
</div>
And css:
#mainDiv {
width:100%;
height:30px;
}
#top {
width:50%;
height:30px;
display:table;
}
.myImage {
vertical-align: middle;
display: table-cell;
}
span {
vertical-align: middle;
display: table-cell;
}
But this is what I get: