I'm trying to set a border-radius for a th element.
It doesn't seem to work.
The same concept works for a div element.
table.spreadsheet th.left {
border-top-left-radius: 1em 1em;
}
<table class="spreadsheet">
<thead>
<tr>
<th class="left">test</th>
</tr>
</thead>
</table>
It doesn't seem to work.
The same concept works for a div element.