So I have this problem where I have a Circle and when I wanna write something in the circle it starts outside of the Circle.
I think it's because it was a block before but I just made it into circle with border-radius: 50%
.
How should i write my code so the Text appears in the circle?
#m {
height: 100px;
width: 100px;
border-radius: 50%;
background-color: forestgreen;
margin: 10px;
}
<div id="m">
<p>bla bla bla</p>
</div>
I hope u guys can help me :D