This is the CSS:
div {
width: 0;
height: 0;
border: 180px solid red;
border-radius: 180px;
}
How does it produce the circle
Demo
Let's examine the question in another way with this picture demonstration:
To produce radius it takes two sides of its border. If you set border-radius to 50 pixels then it would take 25 pixels from one side and 25 pixels from another side.

And taking 25 pixels from each side it would produce like this:
div{
width: 0px;
height: 0px;
border: 180px solid red;
border-radius: 0 50px 0 0;
}

It can take up to 180 pixels from top and 180 pixels from right. Then it would produce like this:
div{
width: 0px;
height: 0px;
border: 180px solid red;
border-radius: 0 180px 0 0;
}

Suppose, if you apply border radius only to two corners unequally:
top-right-corner to 180 pixels
bottom-right-corner to 100 pixels
Then it would take
top-right: 90 pixels from the top and 90 pixels from the right
bottom-right: 50 pixels from the right and 50 pixels from the bottom
Then it would produce like this
div{
width: 0px;
height: 0px;
border: 180px solid red;
border-radius: 0 180px 100px 0;
}

It can take up to half of the border-size, that is, 180 pixels / 2 = 90 pixels. Then it would produce a circle like this
div{
width: 0px;
height: 0px;
border: 180px solid red;
border-radius: 180px;
}

Because all corners have to set their radius value equally.
Taking equal parts of its border, it produces a circle.