Answers for "css div in circle"

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
0

create circle in css

#div2{
    width: 150px;
    height: 150px;
    border: 3px solid #05ffb0;
    border-radius: 50%;
    padding: 20px;
    text-align: center;
}
Posted by: Guest on October-15-2021

Browse Popular Code Answers by Language