In CSS we have the attribute border-radius
.
Usually use the following forms:
border-radius:10px;
border-radius:10px 20px 20px 10px;
But I came across the following code one of these days and until today I'm not understanding what it is for.
div {
border-radius: 100px/55px;
background-color:#333;
height:100px;
}
<div></div>
What does this bar mean by border-radius
?