Click to See Complete Forum and Search --> : Table - Cell Borders
LeeGee
03-25-2003, 02:23 PM
I a trying to place a border around a table and have vertical
lines between cells without horizontal lines between cells.
Can this be done with html?
nkaisare
03-25-2003, 02:36 PM
<table border="1" rules="cols">
Another way to do this is using css:
td {border: none; border-left: 1px solid black}
table {border: 1px solid black}
Depending on what you want it for, you may choose one over the other. Rules is valid HTML and XHTML attribute, so neither method is "globally" preferable over the other.
LeeGee
03-26-2003, 02:35 AM
Thanks. Was exactly what I needed. I appreciate the effort and quick response. Keepup the great work. It's of real value. Regards ... LeeGee