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![]()
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![]()
I do this quite frequently by using a <td> class within my CSS
here is the class
I use it in this mannerHTML Code:td.none{ display: none; visibility:hidden }
HTML Code:<td class="none">whatever words I want here</td>
border-style:none;
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;
Bookmarks