I want to add a style border-radiusto an element <tbody>.
<table>
<thead>...</thead>
<tbody style="border: 1px solid red; border-radius: 12px;">
<tr>
<td>...</td>
</tr>
</tbody>
</table>
border correctly displays, unfortunately, without rounding.
source
share