Answers for "div circle"

CSS
16

css circle

#circle {
      width: 100px;
      height: 100px;
      background: red;
      border-radius: 50%
    }
Posted by: Guest on June-01-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