Answers for "wrap text in circle css"

CSS
0

text in circle css

.circle {
  width: 500px;
  height: 500px;
  line-height: 500px;
  border-radius: 50%;
  font-size: 50px;
  color: #fff;
  text-align: center;
  background: #000
}
<div class="circle">Hello I am A Circle</div>
Posted by: Guest on February-26-2021
0

wrap text around circle image css

.curve { 
	width: 25%;
	height: auto;
	float: left;
	margin-right:2rem; 
	shape-outside:circle();
}
Posted by: Guest on May-27-2021

Browse Popular Code Answers by Language