Skip to content

Instantly share code, notes, and snippets.

@groenewege
Forked from chriseppstein/responsive_table.scss
Created October 26, 2012 07:44
Show Gist options
  • Save groenewege/3957475 to your computer and use it in GitHub Desktop.
Save groenewege/3957475 to your computer and use it in GitHub Desktop.
sass - responsive tables
@include handhelds {
table.responsive {
width: 100%;
thead {
display: none;
}
tr {
display: block;
}
td, th {
display: table-row;
&:before {
display: table-cell;
text-align: right;
padding-right: 5px;
content: attr(data-label) ":";
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment