cssnoob
cssnoob

Reputation: 57

HTML border differences in FF and IE

I'm having some trouble identifying the problem with my html code. I've created a table and it is like this on Internet Explorer (which is the result I'm looking for):

IE

But it comes up like this on Firefox:

Firefox

...and I don't know how to fix this. Please help, thanks.

Upvotes: 3

Views: 729

Answers (1)

Paolo Bergantino
Paolo Bergantino

Reputation: 488384

Try adding border-collapse: collapse; to your table's styles. Documentation Here.

If that doesn't fix it: While the images help, what would help even more is the HTML/CSS that you are using to get the results. That way we can see what the problem may be better.

Upvotes: 3

Related Questions