Reputation: 21739
Here is HTML:
<table>
<tr>
<td>Smth:</td>
<td>Lalala</td>
</tr>
</table>
Here is CSS:
table
{
border: 1px dotted black;
border-radius: 25px;
}
table td
{
padding: 15px;
}
When I use border-radius and border together, it messes up.
Is it possible to correct that? (I can't show it in jsFiddle, because border-radius doesn't work there)
Upvotes: 1
Views: 287