I\'m trying to hide / show columns in a table based on users choices during runtime. I defined two CSS classes:
.hide { visibility: collapse; }
.show { visi
Well Chrome is not really a widely supported browser so technically no one cares if it doesn't work in Chrome (not yet anyway). But why not set visibility to hidden?
td {
width:100px;
height:500px;
border:solid 1px #000000;
}
td#one {
visibility:hidden;
background:#ff0000;
}
td#two {
visibility:hidden;
background:#00ff00;
}
td#three {
visibility:hidden;
background:#0000ff;
}