I think you are looking for vertical-align
.
http://www.w3schools.com/cssref/pr_pos_vertical-align.asp
Set the same height
and line-height
. This will do the trick.
li img { vertical-align: middle; }
Demo jsBin
ul li{
list-style:none;
display:inline-block;
height:40px;
line-height:40px;
}
li img{
float:left;
margin:5px;
}
You need to set a height
and same line-height
for your li
element;
for the containing images - set float : left
To align text and image, you can use margin-bottom:-5px
on image element, the number depends on the size of your image.