Answers for "div class 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
1

div circle

.circle {
  border-radius: 50%;
  height: 100px; /* Change the size to fit your needs */
  width: 100px;
}
Posted by: Guest on April-25-2021

Browse Popular Code Answers by Language