- 3

When we use the border-radius?

This is the quite hard value.

9th Nov 2020, 5:04 AM
Ma. Deanne Grace G. Anorico
Ma. Deanne Grace G. Anorico - avatar
4 Answers
+ 10
Your Question clearly indicates ,U haven't read the "Rounded Corners" lesson carefully. Read the 👇lesson carefully to understand border-radius property: https://www.sololearn.com/learn/CSS/2238/
9th Nov 2020, 5:16 AM
Alphin K Sajan
Alphin K Sajan - avatar
+ 8
Border radius property is used to make curved border. This value can be given in pixels (px), percentage (%), points (pt), etc. Syntax : border-radius: 10px; You can also make border circular using this property. border-radius: 50%; There are also variation, if you want a particular corner to be curved/rounded, then use border-top-left-radius: 10px; border-top-right-radius: 5px; border-bottom-right-radius: 10px; border-bottom-left-radius: 5%;
9th Nov 2020, 5:13 AM
ツSampriya😘ツ
ツSampriya😘ツ - avatar
+ 3
We use border radius if we want to give a round corner to a element. border-radius: 100px; all corners border-radius: 100px 200px; top-down and left-right border-radius: 10px 20px 30px 40px; top right down left
9th Nov 2020, 5:11 AM
Steve Sajeev
Steve Sajeev - avatar