Answers for "how to make div circle using css"

CSS
2

circle div

border-radius: 50%;
width: 200px;
height: 200px; 
/* width and height can be anything, as long as they're equal */
Posted by: Guest on December-27-2020
1

how to create a circle with css

<div id="circle">
</div>

#circle {
    width: 100px;
    height: 100px;
    background: red;
    border-radius: 50%
}
Posted by: Guest on December-02-2020

Code answers related to "how to make div circle using css"

Browse Popular Code Answers by Language