bibi/src/styles/table.css

49 行
577 B
CSS

/* Table Style, 2024-01-01 */
table, caption, thead, tbody, tfoot, tr, th, td
{
border: 0 none;
border-spacing: 0;
font-size: 100%;
font-style: normal;
font-weight: normal;
margin: 0;
padding: 0;
text-align: left;
vertical-align: top;
}
table
{
margin: 1em 0;
}
th, td
{
border: thin solid;
padding: 0.25em;
}
thead + tbody tr th,
thead + tbody tr td,
tbody + tfoot tr th,
tbody + tfoot tr td,
tr + tr th,
tr + tr td
{
border-top: none;
}
th + th,
th + td,
td + th,
td + td
{
border-left: none;
}
th
{
font-weight: bold;
text-align: center;
}