centering text in text areas

how would I do such a thing?<br />
<br />
I'm reading text from an SQL database into a readonly textarea but would like the text to be centered, unfortunately, I can't use html tags within the textarea...any advice?<!--content-->have you tried using css<br />
textarea {text-align:center;}<br />
<br />
:D<!--content-->...and to elucidate on leoo24's reply.<br />
<br />
.text {text-align:left;}<br />
.text-center {text-align:center;}<br />
<br />
<div class="text">This is your normal paragraph text<div><br />
<div class="text-center">And this text alone is centered</div><br />
<br />
I have tried using <span></span> tags for the second <div> tag in that example, but it doesn't work. <br />
<br />
Gandalf<br />
:D<!--content--><span>'s wont work because they are inline elements, they are only as wide as the content inside.<!--content-->Ah, that makes sense.<!--content-->
 
Back
Top