Problem displaying HTML table in Firefox

The table displays differently in Firefox from IE8 / Chrome.

The website is located here: http://nordschleife.metaforix.net/118/118/index.php/panasonic.html?id=5&___store=uk&___from_store=default

I would prefer the look of the table in IE8 / Chrome as the lines are light gray rather than completely black.

Is there anything I can do to fix this?

0


a source to share


1 answer


you need to give the TD element a light gray border color in the CSS info.

for instance



table tr td {border:1px solid #DDD; }

      

+2


a source







All Articles