Answers for "css to show a text on center of circle"

CSS
1

circle css with text in the center

.circle {
  width: 500px;
  height: 500px;
  line-height: 500px;
  border-radius: 50%;
  font-size: 50px;
  color: #fff;
  text-align: center;
  background: #000
}
Posted by: Guest on September-09-2021

Browse Popular Code Answers by Language