i am trying to make an image align to be vertically centered. As it works perfect in all browser except IE7 . I already tried a lot.
here is my css and div.
.vertical_align_center{
background: none repeat scroll 0 0 #FFFFFF;
display: table-cell;
height: 209px;
line-height: 209px;
margin: 4px;
text-align: center;
vertical-align: middle;
width: 160px;
}
<div class="vertical_align_center">
<img src="images/text.jpg" width="100" height="50" />
</div>
Any help will be greatly appreciated. Thanks in Advance.