This is due to the styling you made on alignment. We normally use vertical alignment in CSS to align our element vertically.
Problem here is that the value "text-top" is not working on IE8. Hence, you have to use "top" instead, which is the same behavior with "text-top".
In your CSS entries, instead of using this one:
vertical-align: text-top;
You have to use this one:
vertical-align: top;
Hope this helps.
I'll be posting more of IE issues to help other developers to get through with it. Follow IE 101 for more of IE posts.
No comments:
Post a Comment