I want to create image box(with image).
It's ugly when text is in the top of box.

How can I align text to middle?
I tried to use vertical-align, but it seems, that it don't works

Demo of my code

EDIT:
Your solution works fine with short messages.
But if they will be multi-lined, it is ugly again.
Is it possible to not increase size of line If we don't need it?

enter image description here

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

What usually works fine is line-height:

line-height: 32px;

http://jsfiddle.net/DhHnZ/2/

link|improve this answer
Works fine with 1-line messages. But is it possible to not increase its size if it will multilined? Example: jsfiddle.net/mRbgq – RiaD Sep 24 '11 at 22:51
If you expect multiple lines, I would recommend using padding-top: 8px; padding-bottom: 8px; instead of the line-height thing. (font-size: 16px + 8px above + 8px below = 32px total height) – Niko Sep 24 '11 at 23:01
See jsfiddle.net/mRbgq/2 – Niko Sep 24 '11 at 23:13
feedback

Set the line-height to the height of the div.

So

.messageInfo{
    background: lightskyblue;
    background-image: url(http://i.stack.imgur.com/Z6lkS.png) ;
    background-repeat: no-repeat;
    min-height: 32px;
    vertical-align: middle;
    padding-left:32px;
    line-height:32px; //ADD THIS
}

Working example: http://jsfiddle.net/jasongennaro/DhHnZ/1/

link|improve this answer
Works fine with 1-line messages. But is it possible to not increase its size if it will multilined? Example: jsfiddle.net/mRbgq – RiaD Sep 24 '11 at 22:50
feedback

If you want to middle align a block with multiple lines, you can use display:inline-block around that block. So if you have:

<div class="messageInfo">
   <div class="messageInner">You are logged out<br>You are crazy<br> gogo</div>
</div>

with

.messageInfo{
    background: lightskyblue;
    background-image: url(http://i.stack.imgur.com/Z6lkS.png) ;
    background-repeat: no-repeat;
    min-height: 32px;
    vertical-align: middle;
    padding-left:32px;
    line-height:32px;
}

add

.messageInner {
    display:inline-block;
    line-height:1.2em;
    vertical-align:middle;
}

See http://jsfiddle.net/yNpRE/1/ and http://jsfiddle.net/yNpRE/

Be warned though, that while this works in modern browsers, it doesn't work with IE7 or earlier.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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