The border uses my colors of choice:
code {
font-size: 100%;
border: 1px solid #BABABA;
}
Because I create some tables directly in HTML and with cells having substantial amount of content, these get alligned at the top and vertically centered.
th, td {
border-bottom: 1px solid #BABABA;
}
td {
vertical-align: top;
}
Tables without proper thead
should still get a top border:
th.no-thead, td.no-thead {
border-top: 1px solid #BABABA;
}