<table>
<col style="background-color: green;"/>
<col style="background-color: blue;display:none;"/>
<col style="background-color: red;"/>
<tbody>
<tr>
<td>Hi! :)</td>
<td>Hm... :\</td>
<td>Bye!!! :(</td>
</tr>
<tr>
<td>1</td>
<td>2</td>
<td>c</td>
</tr>
</tbody>
</table>
Internet Explorer hides the second column (that is correct, logically, I
don't sure about standards), but FF 1.5 show all three columns, second
column is red, looks like it ignores only <col> tag.
--
WBR, kan.
> Internet Explorer hides the second column (that is correct, logically, I
> don't sure about standards), but FF 1.5 show all three columns, second
> column is red, looks like it ignores only <col> tag.
Sorry for disturbance, but I've found, that standard way is
"visibility:collapse;", FF works fine. ;)
--
WBR, kan.