I'm trying to put a border-radius on my table so that the 4 edges of it are rounded. If I move the tr / th / td border-radius will change the radius of the ballots and not just those of the table, which is my goal and if I change the radius of the table and this appears correctly. With the table mark that the radius has decreased but the table does not follow this, it follows an image to illustrate what I said:
CSS:
.table-round-corner{margin-top:15px;width:100%;text-align:center;berder-radius:25px;border:solid#ddd1px;overflow:hidden;}tabletd{color:#aaa;background-color:white;padding:5px;border:1pxsolid#ddd;}tableth{color:white;background-color:red;font-weight:normal;text-align:center;padding:5px;font-size:12px;}
HTML:
<tableclass"table-round-corner">
<tr>
<th>ASDASD</th>
<th>ASDASDAS</th>
<th>ASDASD</th>
</tr>
<tr>
<td>ASDASD</td>
<td>34</td>
<td>R$ 00,00</td>
</tr>
<tr>
<td>ASDASDASD</td>
<td>00</td>
<td>R$ 00,00</td>
</tr>
</table>
Summary:
I need my table to have rounded tips.