Skip to content

Instantly share code, notes, and snippets.

@kije
Created February 12, 2015 16:14
Show Gist options
  • Save kije/a4ecf7b61b6c170cce18 to your computer and use it in GitHub Desktop.
Save kije/a4ecf7b61b6c170cce18 to your computer and use it in GitHub Desktop.
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;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment