简体   繁体   中英

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

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.

Are you talking about doing something like this?

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

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

Marking as deleted since RULES is deprecated...

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM