Skip to content

Instantly share code, notes, and snippets.

@raiderrobert
Created November 4, 2016 13:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raiderrobert/573c2888cc24351d503951a9c94b60bc to your computer and use it in GitHub Desktop.
Save raiderrobert/573c2888cc24351d503951a9c94b60bc to your computer and use it in GitHub Desktop.
Rsponsive Table
@media screen and (max-width: 600px) {
table {
border: 0;
}
table thead {
display: none;
}
table tr {
margin-bottom: 10px;
display: block;
border-bottom: 2px solid #ddd;
}
table td {
display: block;
text-align: right;
font-size: 13px;
border-bottom: 1px dotted #ccc;
}
table td:last-child {
border-bottom: 0;
}
table td:before {
content: attr(data-label);
float: left;
text-transform: uppercase;
font-weight: bold;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment