Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Border-radius: 50% vs. border-radius: 999em [duplicate]

Tags:

html

css

While exploring the awesome markup of Medium, found an interesting way to make beautiful pill-styled buttons by using border-radius:999em. However this raised a question: why border-radius:50% makes an oval instead of a pill?

Here is a live example: http://codepen.io/evergreenv/pen/ykpBA/

Codepen to illustrate border-radius:50% vs. border-radius:999em

like image 625
vadirn Avatar asked Mar 22 '14 14:03

vadirn


People also ask

What is the best border radius?

3–4px Radius: This is best and probably the most safe choice. 3–4px is in every point of standard across multi fields, expressing a little bit more friendly and accommodating then 0px.

What is the difference between border and border radius?

The only difference between them is the right button has a radius of 5px applied. As with borders, radius allows you to set different properties for each side of the element using the toggle controls.

How do you find the border radius of a percentage?

Percentages: Refer to corresponding dimension of the border box. So border-radius:50%; defines the raddi of the ellipse this way : the radii on the X axis is 50% of the containers width. the radii on the Y axis is 50% of the containers height.

Should I use border radius REM?

There is no technical reason not to use the rem unit for border-radius . Neither is never any compelling reason to use the rem unit, for it or otherwise.


1 Answers

The border radius property does all it can to mantain same ratio between the overall radius, when you use border-radius: 999em, it keeps the same proportions of the smallest corner.

But when you use border-radius: 50%, it makes the border set to the proportions of the entire object, assuming x-axis for 50% of the width and y-axis for the 50% of the height of the object, all corners combined make it appear as if the object is circular.

like image 118
Evandro Silva Avatar answered Sep 29 '22 09:09

Evandro Silva