How can I make a rounded button | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How can I make a rounded button

Web

10th Sep 2020, 5:39 PM
David Osei
David Osei - avatar
4 Answers
+ 3
Use CSS property border-radius to rounded a button. 👇 .button {border-radius: 50%;}
10th Sep 2020, 5:46 PM
Maharnab Saikia
Maharnab Saikia - avatar
+ 2
Use css property border-radius on the button
10th Sep 2020, 5:43 PM
Мг. Кнап🌠
Мг. Кнап🌠 - avatar
+ 1
You're probably looking for the CSS border-radius property: https://developer.mozilla.org/en-US/docs/Web/CSS/border-radius
10th Sep 2020, 5:43 PM
Aaron Eberhardt
Aaron Eberhardt - avatar
+ 1
If you want to make circular button you can use button{border-radius:50%} But if you want it only rounded in four sides Use highest pixels Maybe Button{border-radius: 200px;}
11th Sep 2020, 10:31 AM
KARTHIK
KARTHIK - avatar