Skip to content

Instantly share code, notes, and snippets.

@alkrauss48
Created September 21, 2016 20:57
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 alkrauss48/36f093b59564d46eebb328f5de54e409 to your computer and use it in GitHub Desktop.
Save alkrauss48/36f093b59564d46eebb328f5de54e409 to your computer and use it in GitHub Desktop.
Base Table Styles
table {
min-width: 100%;
margin-bottom: 2em;
text-align: center;
}
tbody {
border: 2px solid #d1d1d1;
border-right: none;
}
tr {
border-bottom: 1px solid #d1d1d1;
}
td, th {
padding: .75em;
}
th {
font-weight: bold;
font-size: 1.1em;
}
tr:nth-child(odd) {
background-color: #f2f2f2;
}
td {
font-weight: 300;
border-right: 2px solid #d1d1d1;
}
.table-wrapper {
overflow: auto;
}
$('table').wrap("<div class='table-wrapper'></div>");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment