Answers for "how to make a circle css a tag"

CSS
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 a circle css a tag"

Browse Popular Code Answers by Language