I have an imagemap that shows a particular div with a circled background-image. In this div it shows a bunch of text. But since the background is circular, i'd like the text to be aligned as a circle of the same size. Is there a way of doing this?
Basically what I want is to align a large piece of text in a circle. Something like this, but with a bigger text.
http://jsfiddle.net/danield770/rbCrQ/4/
#ff{
width:80px;
height:80px;
background-color:red;
border-radius:100%;
text-align:center;
line-height:80px;
}
span
{
line-height: normal;
display:inline-block;
vertical-align: middle;
}
So far that has been the only thing i've tried, but with a bigger text it doesn't center anymore.