tags:

views:

409

answers:

1

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?

+2  A: 

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; }
Stephen Wrighton
thanks I'll try that method
Bo Tian