Answers for "circle with number in css"

CSS
0

css circle with number

.circle{
border-radius: 100%;
    width: 5%;
}
.text{
	text-align:center;
  	margin-left: 25px;
}
Posted by: Guest on August-13-2021
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

Browse Popular Code Answers by Language