I have a text-control in Div. I want to place the text aligned vertically centered of div.
The div has following styling:
display: table-cell;
vertical-align: middle;
text-align: Left;
font-size: 14px;
height: 80px;
padding: 0 15px 0 15px;
overflow: hidden;
Problem:
It aligns text as expected in IE8, but fails in IE7 and IE6.
Anyway to fix it, so it works alright in all IEs.