Answers for "css html circle"

CSS
21

css circle

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

make a circle in css

div {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

/*
	note: 
	should width = height
*/
Posted by: Guest on March-15-2022
1

css circle

#circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
Posted by: Guest on September-29-2021

Browse Popular Code Answers by Language