DG3
DG3

Reputation: 5298

HTML Row headings on left

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

http://jsfiddle.net/eEEuv/

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

Answers (2)

Sylvain Guillopé
Sylvain Guillopé

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

Daniel Casserly
Daniel Casserly

Reputation: 3543

style="border-left:0; border-bottom:0" in the main table tag

Upvotes: 0

Related Questions