MillerMedia
MillerMedia

Reputation: 3671

Alignment Issues In IE7

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.

http://jsfiddle.net/cSq6W/2/

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

Answers (2)

sandeep
sandeep

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:

  • Use a real <table> and suffer unsemantic HTML.
  • Use JavaScript for IE7 (and lower) to fix it.

Upvotes: 2

x0n
x0n

Reputation: 52420

IE 7 specific bugs from quirksmode.org:

http://www.quirksmode.org/bugreports/archives/explorer_7/index.html

Upvotes: 1

Related Questions