Reputation: 5
I'd like to ask if anyone knows why the table elements and unordered lists cannot be viewed properly on ALL VERSIONS of Internet Explorer? The table cells go dark and the unordered lists look really messy.
I have a website that clearly shows this:
http://www.feimediasolutions.com/Dairen_Website/products_rheem85vp.htm
Help is deeply appreciated. Thanks!!
Upvotes: 0
Views: 54
Reputation: 388
IE is restricted with the shortcut color code. Try changing from #fff to #ffffff:
Change <tr bgcolor="#fff"> to <tr bgcolor="#ffffff">
Upvotes: 1
Reputation: 7668
Quoting from this page explaining the "display" css property:
Note: The values "inline-table", "table", "table-caption", "table-cell", "table-column", "table-column-group", "table-row", "table-row-group", and "inherit" are not supported in IE7 and earlier. IE8 requires a !DOCTYPE. IE9 supports the values.
To clarify - your tables are using these css styles and I would suggest trying without them and leave the display at default. See what happens and go from there.
Upvotes: 0