table radius in html code example
Example 1: border radius in table
table {
border-collapse: collapse;
border-radius: 30px;
border-style: hidden; /* hide standard table (collapsed) border */
box-shadow: 0 0 0 1px #666; /* this draws the table border */
}
td {
border: 1px solid #ccc;
}
Example 2: how to make borders rounded in css
#rcorners {
border-radius: 25px;
}
Example 3: border radius css
border-radius: 5px; /* The corners will be round */