Skip to content

Instantly share code, notes, and snippets.

@kije
kije / hide_table_cell.css
Created February 12, 2015 16:14
how to hide a table cell without breaking colspan etc...
td {
visibility: hidden;
width: 0;
height: 0;
max-width: 0;
max-height: 0;
overflow: hidden;
font-size: 0;
line-height: 0;
}