simple row hiding
Hi all,
I have a basic html table several rows.
I would like to hide row 2.
so i made a css style like:
<style type="text/css">
.hiderow {
visibility: collapse;
// also tried display: none
}
</style>
then on row2 i set like:
<tr class="hiderow">
<td>test/td>
<td>test</td>
</tr>
problem is it doesn't work. Any ideas how to get it to work? Also in all browsers?
Thanks much for your help
Dave
