Reputation: 3671
I'm having some frustrating alignment issues. I had previously posted a question because everything was arranged correctly in all of the browsers except FF. I now have everything correct but of course IE has swooped in to cause problems. It works fine in IE8 and IE9 but NOT in IE7.
Basically the left column is where the right column should be and the right column is below. I have a feeling it has something to do with inline:block or display:table-cell . Are there any known bugs with these styles in IE7?
Upvotes: 2
Views: 400
Reputation: 92803
display:table-cell
is not working IE7. If you desperately need functionality that can only be provided by display: table-cell
in IE7, you have two choices:
<table>
and suffer unsemantic HTML.Upvotes: 2
Reputation: 52420
IE 7 specific bugs from quirksmode.org:
http://www.quirksmode.org/bugreports/archives/explorer_7/index.html
Upvotes: 1