Reputation: 5298
I am trying to create a simple HTML table in which I want the first column values to act as heading for that row.Below is the link to the example
In the table,I want row1 and row2 as the heading and want to remove the left, top, and bottom borders around that column. I am able to remove the top border, but how to remove the left and bottom borders?
Upvotes: 0
Views: 1359
Reputation: 1367
Take a look at this code and let me know if that works for you http://jsfiddle.net/eEEuv/6/
Cheers
Upvotes: 2
Reputation: 3543
style="border-left:0; border-bottom:0" in the main table tag
Upvotes: 0