Reputation: 5939
The table renders differently in Firefox from IE8/Chrome.
The website is here: http://nordschleife.metaforix.net/118/118/index.php/panasonic.html?id=5&___store=uk&___from_store=default
I'd prefer the looks & feel of the table under IE8/Chrome, as the lines are light gray instead of completely black.
Is there anything I can do to fix this?
Upvotes: 0
Views: 1000
Reputation: 37880
you need to give the TD element the light gray border color in the CSS information.
For example
table tr td {border:1px solid #DDD; }
Upvotes: 2