/* Rounded border */ hr.rounded { border-top: 8px solid #bbb; border-radius: 5px; } code example
Example: css rounded corners
/* Set rounded corners with border-radius property */
.class {
border-radius: 4px;
}
.circle {
border-radius: 50%;
}