How to set a border-radius for a table. Read a lot of information about this, but nothing concrete.
<table id="table-prices">
<tr>
<td></td>
<td colspan="2" class="table-main">Длина</td>
</tr>
<tr>
<td>Ширина</td>
<td>190 см</td>
<td>200 см</td>
</tr>
<tr>
<td>80 см</td>
<td>5496</td>
<td>5496</td>
</tr>
<tr>
<td>140 см</td>
<td>5496</td>
<td>5496</td>
</tr>
<tr>
<td colspan="3">Цены указаны в грн.</td>
</tr>
</table>
table {
border: 1px solid #f00;
border-radius: 10px;
border-collapse: separate;
border-spacing: 0;
}
td {
border: 1px solid #f00;
}
Almost done. But after border of table the angles are displaying. When I seting the owerflow-hiding - the grid inside table is lost