Answers for "how to make circlein css"

CSS
17

css circle

#circle {
      width: 100px;
      height: 100px;
      background: red;
      border-radius: 50%
    }
Posted by: Guest on June-01-2020
47

css rounded corners

/* Set rounded corners with border-radius property */

.class {
  border-radius: 4px;
}

.circle {
  border-radius: 50%;
}
Posted by: Guest on February-15-2020
1

circle css

#circle {
  width: 100px;
  height: 100px;
  background: red;
  border-radius: 50%
}
Posted by: Guest on December-06-2020

Browse Popular Code Answers by Language