Skip to content

Instantly share code, notes, and snippets.

@mikeott
Created June 29, 2023 06:30
Show Gist options
  • Save mikeott/95107811e7a368b4ccffd3dd325b72fc to your computer and use it in GitHub Desktop.
Save mikeott/95107811e7a368b4ccffd3dd325b72fc to your computer and use it in GitHub Desktop.
Responsive tables
@media screen and (max-width: 600px) {
table {
width: 100%;
border-collapse: collapse;
}
tr:nth-child(even) {
background-color: #f0f0f0;
}
tr td:first-child {
   font-size: 1.1em;
}
tbody td:before {
content: attr(data-th);
display: block;
text-align: center;
}
}
td {
border: 1px solid #d6d6d6;
padding: 8px;
text-align: center
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment