In an HTML table, how can I make vertical lines visible (the same kind as the default horizontal ones)?

3.3k Views Asked by At

Given that I'm allowed to use static JS and HTML tags (only those supported by IE6), how can I make vertical lines visible (the same kind as the default horizontal ones*)?

*In a default HTML table you can see (subtle) horizontal lines. I need vertical lines in the same style as those horizontal lines.

3

There are 3 best solutions below

1
On BEST ANSWER

Are you talking about doing something like this?

http://jsfiddle.net/b7WK8/1/

td{border:1px solid #000;}
0
On
td {
    border-bottom: solid 1px #000;
}
2
On

Marking as deleted since RULES is deprecated...

Set `RULES` attribute along with `BORDER` attribute for the table. i.e: . . .