Skip to content

Instantly share code, notes, and snippets.

@danielmelogpi
Last active March 9, 2017 17:15
Show Gist options
  • Save danielmelogpi/db62f27eda07633cf79ae975a5415507 to your computer and use it in GitHub Desktop.
Save danielmelogpi/db62f27eda07633cf79ae975a5415507 to your computer and use it in GitHub Desktop.
/** Usado quando precisei montar uma grid com a primeira coluna fixa com mais flexibilidade **/
.table { display: table }
.tr { display: table-row }
.thead { display: table-header-group }
.tbody { display: table-row-group }
.tfoot { display: table-footer-group }
.col { display: table-column }
.colgroup { display: table-column-group }
.td, .th { display: table-cell }
.caption { display: table-caption }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment