Skip to content

Instantly share code, notes, and snippets.

@aGHz
Created March 21, 2013 19:22
Show Gist options
  • Select an option

  • Save aGHz/5215867 to your computer and use it in GitHub Desktop.

Select an option

Save aGHz/5215867 to your computer and use it in GitHub Desktop.
table.prod-specs {
font-size: 12px;
width: 100%;
margin-bottom: 25px;
}
table.prod-specs thead {
border-bottom: 1px solid #000;
}
table.prod-specs th {
text-align: left;
font-weight: normal;
line-height: 14px;
}
table.prod-specs tr:first-child th {
text-transform: uppercase;
font-weight: bold;
}
/* poor man's tr:nth-child(2) th */
table.prod-specs tr + tr > th {
padding-bottom: 3px;
}
table.prod-specs tbody td {
padding-top: 8px;
}
/* vs. */
table.prod-specs {
font-size: 12px;
width: 100%;
margin-bottom: 25px;
}
table.prod-specs thead {
border-bottom: 1px solid #000;
}
table.prod-specs th {
text-align: left;
font-weight: normal;
line-height: 14px;
}
table.prod-specs tr:first-child th {
text-transform: uppercase;
font-weight: bold;
}
/* poor man's tr:nth-child(2) th */
table.prod-specs tr + tr > th {
padding-bottom: 3px;
}
table.prod-specs tbody td {
padding-top: 8px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment