vote up 1 vote down star
1

I have a header

<h1>My Header</h1>

It has a height of 150px and a font-size of say 1.3em; How can I make the header text vertically centered with CSS. I would rather not wrap it in a container DIV (wrapping divs really defeat the whole CSS idea).

flag

69% accept rate

2 Answers

vote up 3 vote down check

The best way is to add this rule:

h1 {
    line-height: 150px;
}

You don't need to set the height value, and the font size doesn't affect the vertical align.

link|flag
The font size does affect .. the font size though ;) – boris callens Nov 18 '08 at 16:02
Won't this be a problem if the text ends up being multiple lines long? – Travis Aug 18 at 21:36
vote up 3 vote down

If the height of the title is 150px, could you also set the line-height to 150px?

h1
{
    font-size: 1.3em;
    line-height: 150px;
    height: 150px;
}
link|flag
Thanks for the answer. As alexmeia noted it seems the height is unncessary as the line-height already stretches the tag. – boris callens Nov 18 '08 at 16:03

Your Answer

Get an OpenID
or

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