Log in

View Full Version : hide lines in a table



d-machine
06-18-2009, 12:51 PM
hi,

I have a simple table, and I want to hide 2 lines (tr) from it
I don't know how to make them disappear

Any ideas?

Thank you :)

forum_amnesiac
06-18-2009, 01:38 PM
I do this quite frequently by using a <td> class within my CSS

here is the class

td.none{
display: none;
visibility:hidden
}

I use it in this manner


<td class="none">whatever words I want here</td>

C55inator
06-23-2009, 08:01 PM
border-style:none;

C55inator
06-23-2009, 08:04 PM
Oh, though you meant borderlines. You mean rows. Can't you just comment them out??

You know, <!-- --> it? That should have the same effect. Or, try height:0px; width:0px; overflow:hidden;