Is this a circle?, Should be a circle !! | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
+ 1

Is this a circle?, Should be a circle !!

I want an html page where texts be written in the form of bubbles on the screen !! ♠ Refer to the code below ↓↓ and (i) Make it a perfect circle , (ii) Make other bubbles and write anything!! https://code.sololearn.com/WZP7BBEzriVc/?ref=app [ Any changes / suggestions / advice is widely appreciated, and is required 😃 ]

8th Sep 2020, 5:24 PM
I M J
I M J - avatar
8 Respuestas
+ 8
border-radius:50%; height:150px; width:150px;
8th Sep 2020, 9:28 PM
bobbie
bobbie - avatar
+ 2
In CSS tab: Line 7: Put border-radius : 50% instead of 50000px
8th Sep 2020, 5:27 PM
Vadivelan
+ 2
add this to the CSS code .section{ border-radius:50%; height:150px; width:150px; }
8th Sep 2020, 9:20 PM
Galaxy-Coding (inactive)
Galaxy-Coding (inactive) - avatar
+ 2
Border-radius = 50%; And width and height must be equal.
9th Sep 2020, 5:08 PM
Nor'wester 🌪️ 🇧🇩 (INACTIVE)
Nor'wester 🌪️ 🇧🇩 (INACTIVE) - avatar
+ 1
Use this .section{ border-radius:50%; }
8th Sep 2020, 6:51 PM
Divya Mohan
Divya Mohan - avatar
+ 1
.section{ height: 200px; width: 200px; border-radius: 50%; } funny enough i learnt this last week.
9th Sep 2020, 7:02 AM
Lily Ofori-Amanfo
Lily Ofori-Amanfo - avatar
+ 1
You will require to set width and height attribute of div, something like . section { width:100px; height:100px; border-radius:50% }
14th Sep 2020, 7:05 PM
Ashish Kumar Jha
+ 1
Border-radius should be 50% and height and width should be equal,whatever they are.
12th Oct 2020, 3:25 AM
Brian Eller
Brian Eller - avatar