+ 1
Please turn this button into a circle because i can't do it
Please turn this button into a circle because I cant https://code.sololearn.com/W09se6RNOB88/?ref=app
5 Antworten
+ 2
Use border-radius: 50%; and adjust the width and height to make it a circle (make them equal)
+ 2
Nevermind Thank you I did it
+ 2
You need to make the width and height equal to each other if you want a button to be a circle.
Border-radius has to remain 50% as well
+ 2
thank you
+ 1
You're welcome, but be careful that
border-radius:50px;
is not the same as
border-radius:50%;
The first will not give you a circle if width, height are over 100px