Ist es möglich, dass eine Tabellenüberschrift abgerundete Ecken hat? et einen 1px-Rahmen?
Wenn ich einen Rahmen auf die th
Elementen sind die Ecken des Rahmens quadratisch statt rund.
table {
border-collapse: collapse;
}
th {
background: cyan;
border: 1px solid;
}
th:first-child {
border-radius: 10px 0 0 0;
}
th:last-child {
border-radius: 0 10px 0 0;
}
td {
border: 1px solid;
}
<table>
<tr><th>Col 1</th><th>Col 2</th></tr>
<tr><td>a</td><td>b</td></tr>
<tr><td>c</td><td>d</td></tr>
</table>