Reputation: 5417
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
Reputation: 27092
border-collapse
has to be defined for table
, see my fiddle:
table {border-collapse: collapse}
http://jsfiddle.net/y5ghL230/1/
Upvotes: 8