ankush981
ankush981

Reputation: 5417

Border collapse not working in simple HTML table

Not sure why but border-collapse is not working in my simple HTML table even after I use border-collapse: collapse. Here's the JS fiddle: http://jsfiddle.net/y5ghL230/

Can somebody help, please?

Upvotes: 2

Views: 5688

Answers (1)

pavel
pavel

Reputation: 27092

border-collapse has to be defined for table, see my fiddle:

table {border-collapse: collapse}

http://jsfiddle.net/y5ghL230/1/

Upvotes: 8

Related Questions