Problem when trying to disappear a column
Posted
by
eddy
on Stack Overflow
See other posts from Stack Overflow
or by eddy
Published on 2011-01-14T00:50:23Z
Indexed on
2011/01/14
0:53 UTC
Read the original article
Hit count: 155
I need to hide a column as well as other elements when my page is printed , and in order to do that I have a print style sheet, everything works fine, except for the column I want to make disappear, the strange thing is that my stylesheet works in IE , but it didn't in Mozilla and chrome, why's that?
Html code
<col width="10%" class="art-editcolumn"/>
and here's the CSS class:
.art-editcolumn
{
display: none;
}
Hope you can help me out with this.
© Stack Overflow or respective owner