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.

I have the following

 <div class="label" 
    style="position: absolute; top: 20px; left: 20px; width: 200px; height: 40px;">
    Label Text
 </div>

 <div class="label" 
    style="position: absolute; top: 70px; left: 20px; width: 200px; height: 120px;">
    Also several lines of 
    Label Text
    may be included
 </div>

How can I vertically align the (possibly several lines of) text inside a div.label?

I can add innerHTML if necessary but I can't change the container (class="label").

http://jsfiddle.net/austinfrance/CDTk2/ (now working example)

share|improve this question

4 Answers

up vote 4 down vote accepted

You can use something along the lines of

 <div class="label" 
style="position: absolute; top: 70px; left: 20px; width: 200px; height: 120px; display: table; vertical-align: middle; border:1px solid #000">
    <span style="display: table-cell;vertical-align: middle;">
Also several lines of
Label Text
may be included
    </span>

please see http://jsfiddle.net/99F6D/1/

share|improve this answer
That works perfectly, thank you! jsfiddle.net/austinfrance/CDTk2 – Austin France Jul 27 '12 at 15:38

You can't reliably vertically align text that may change

share|improve this answer

may by add to style line-height = div.height;

share|improve this answer
that won't do happy things if you have multiple lines of text. :( – Chris Jul 27 '12 at 15:28

Try this:

 <div class="label" 
 style="position: absolute; top: 20px; left: 20px; width: 200px; height: 40px;">
    <span style="display:inline-block; vertical-align:middle"> Label Text </span>
 </div>
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.