Well it does an oval using border-radius: 50%, because it counts the borders of an element from the x and y directions, which means in width and height, and you have a width of 120 pixels and a height of 60 pixels, so it calculates how this border in the x direction means 60px and on y its radius is 30px, and combining it, make an oval.
when applying css border-radius:100px
it does
border-top-left-radius: 100px;
border-top-right-radius: 100px;
border-bottom-right-radius: 100px;
border-bottom-left-radius: 100px;
to get the form of tablets.
source
share