Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My code:

<div>
<input type="textarea">
</div>

How can I align text to the horizontal center and vertical top of the textarea?

share|improve this question
4  
There is no such input type as textarea. w3.org/TR/html4/interact/forms.html#edef-INPUT – Danya Vershinin Oct 9 '11 at 17:04

3 Answers

Like Dave mentioned there is no supported type="textarea" attribute for the input field. I think you want <textarea> like this:

<textarea class="alignCenter"></textarea>

.alignCenter {
    text-align:center;
}

Fiddle link: http://jsfiddle.net/Jt34H/

share|improve this answer

The styling of a Text-area is very limited. You could try us this openWYSIWYG

share|improve this answer

Just put,

HTML

<textarea>some words</textarea>

CSS

textarea
 {
    text-align:center;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.