Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to center a div vertically with CSS. I don't want tables or Javascript, but only pure CSS. I found some solutions, but all of them are missing Internet Explorer 6 support.

<body>
    <div>Div to be aligned vertically</div>
</body>

How can I center a div vertically in all major browsers, including Internet Explorer 6?

share|improve this question
7  
Why don't you want to solve this task with a very simple TABLE? – Marco Demaio Mar 29 '10 at 16:20
@MarcoDemaio Don't people constantly frown upon tables for layouts on here? – Chud37 Jan 21 at 15:35
@Chud37: it depends what you have to do, tables for layout are generally not versatile and long to type in code, with css you can easily change a 2 cols layout into a 3/4/5 sols layout etc. But in this case is different, using dozens of css tips-and-tricks for such a simple task that could be accomplished with a perfect cross-browser table, it's like attempting to enter in your house through the window instead of using the door. – Marco Demaio Jan 24 at 19:52

7 Answers

up vote 41 down vote accepted

You can read up on this little article on vertical centering with div tags.

Vertical Centering in CSS

share|improve this answer
Very interesting article! – Toon Krijthe Dec 28 '08 at 13:31
Burak said no tables. Or are you saying that table specified in HTML is bad, but specified in CSS is OK? – buti-oxa Dec 28 '08 at 17:05
great article. I would surely use this method very soon. Thanks! – Ionut Staicu Dec 30 '08 at 9:49
7  
"table specified in HTML is bad, but specified in CSS is OK?" Yes. HTML is the basic markup of the content, and it should be semantically correct for the content. CSS is purely for visual layout and eye candy, for which "table" or other paradigms are fine if that's what you want. – mattandrews Jun 19 '09 at 2:05
1  
Doesn't work in Safari on Mac OSX – James May 24 '10 at 20:02
show 3 more comments

Actually you need two div's for vertical centering. The div containing the content must have a width and height.

<body>
<div id="container">
  <div id="content">
    <h1>Centered div</h1>
  </div>
</div>
</body>

#container{
   position: absolute;
   top: 50%;
   margin-top: -200px;/* half of #content height*/
   left: 0;
   width: 100%;
}
#content {
   width: 624px;
   margin-left: auto;
   margin-right: auto;
   height: 395px;
}

Here is the result

share|improve this answer
oops mis read the issue . sorry . – Darkyen Jul 22 '12 at 17:27

Below is the best all-around solution I could build to vertically & horizontally center a fixed-width, flexible height content box. Tested and working for recent versions of FF, Opera, Chrome, & Safari, and MSIE 6+.

The Important Parts

  • outter DIV: display: table; position: absolute; height: 100%; width: 100%
  • middle DIV: display: table-cell; vertical-align: middle
  • inner DIV: margin-left: auto; margin-right: auto; width: [whatever width you want]

To accommodate for IE 7 & older, use a separate style sheet with these changes:

  • link to IE style sheet: <!--[if lte IE 7]><link rel="stylesheet... /><![endif]-->
  • outter DIV: display: inline-block; top: 0
  • middle DIV: display: inline-block; top: 50%, position: relative
  • inner DIV: display: inline-block; top: -50%, position: relative

Test page: http://emergentweb.com/test/valign.html

I built in some dynamic content to test the flexibility. Would love to know if anyone sees any problems with it. Should work well for centered overlays also -- lightbox, pop-up, etc.

share|improve this answer
1  
Worked perfectly when the inner div was a flexible height. I tested it in Chrome and IE7 without the outer div positioned absolutely and that worked as well. – Sabrina Gelbart Feb 9 '12 at 14:08
Without an "absolute" outer DIV, any content on the page before it will push the whole block down. This makes it more independent of other page content. – Billbad Apr 3 '12 at 17:00
1  
This seems to be the only solution that doesn't require any hard-coded heights. – Martijn Jun 21 '12 at 14:37
IE7 + display: inline-block? IE 5.5-7.0: natural inline elements only – biziclop Dec 7 '12 at 19:01
@biziclop Acknowledged. Let me figure out what I did there. – Billbad Dec 18 '12 at 12:07

Unfortunately — but not surprisingly — the solution is more complicated than one would wish it to be. Also unfortunately, you'll need to use additional divs around the div you want vertically centered.

For standards-compliant browsers like Mozilla, Opera, Safari, etc. you need to set the outer div to be displayed as a table and the inner div to be displayed as a table-cell — which can then be vertically centered. For Internet Explorer, you need to position the inner div absolutely within the outer div and then specify the top as 50%. The following pages explain this technique well and provide some code samples too:

There is also a technique to do the vertical centering using Javascript. Vertical alignment of content with JavaScript & CSS demonstrates it.

share|improve this answer

This is always where I go when I have to come back to this issue

For those who don't want to make the jump:

  1. Specify the parent container as position:relative or position:absolute.
  2. Specify a fixed height on the child container.
  3. Set position:absolute and top:50% on the child container to move the top down to the middle of the parent.
  4. Set margin-top:-yy where yy is half the height of the child container to offset the item up.

An example of this in code:

<style type="text/css">
    #myoutercontainer { position:relative }
    #myinnercontainer { position:absolute; top:50%; height:10em; margin-top:-5em }
</style>
...
<div id="myoutercontainer">
    <div id="myinnercontainer">
        <p>Hey look! I'm vertically centered!</p>
        <p>How sweet is this?!</p>
    </div>
</div>
share|improve this answer

I did it with this (change width, height, margin-top and margin-left accordingly):

.wrapper {
    width:960px;
    height:590px;
    position:absolute;
    top:50%;
    left:50%;
    margin-top:-295px;
    margin-left:-480px;
}

<div class="wrapper"> -- Content -- </div>
share|improve this answer
Thats only good if you know the width/height of the DIV your trying to center. This isn't what the question is asking – egr103 Feb 19 at 10:02

There's an even simpler trick that I use -- set the left and right margins for the div to "auto", and it will center it vertically.

share|improve this answer
That will only center it horizontally. – RouteMapper May 6 at 22:11

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.