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

I need to place the div (absolute) element in the center of my window. But i am having problems doing so, because the width is unknown

I tried this. But it need to be adjusted because the width is changing.

.center {
      left: 50%;
      bottom:5px;
}

Any ideas?

share|improve this question
5  
How can you center if width is unknown? – Robert Harvey Nov 21 '09 at 21:59
You have an example in Absolute center examples that can be generalized in different situations. – user1929959 Jan 9 at 22:56

9 Answers

up vote 180 down vote accepted
<body>
    <div style="position: absolute; left: 50%;">
        <div style="position: relative; left: -50%; border: dotted red 1px;">
            I am some centered shrink-to-fit content! <br />
            tum te tum
        </div>
    </div>
</body>
share|improve this answer
11  
Awesome. Worked for me! One problem I had: The image I was centering was quite big, this caused the outer div to go beyond the right edge of the page and cause horizontal scrolling. I swapped out the "left" css property for "right", and so far it works better since going over the left edge of the screen doesnt cause scrolling – BoomShaka Oct 26 '11 at 10:28
2  
this worked in IE6, IE7, IE8, Chrome, Firefox!!!! – supercoolville Jul 19 '12 at 5:37
I never knew it would be so easy... Thanks a lot, your solution works perfectly! – Raymond Aug 23 '12 at 5:48
what if user has scrolled the page down, overylay appears on the top, do you think it will be a good idea to use jquery to fix scroll issue – jaminator Sep 1 '12 at 5:45
one solution for scroll issue can be position: fixed but what if height is unknown of overlay, scroll bars for overlay will have to be implemented – jaminator Sep 1 '12 at 5:49
show 2 more comments

this works for me:

 #content{
        position:absolute;
        left:0;
        right:0;
        margin-left:auto;
        margin-right:auto;
        }
share|improve this answer
44  
This is so much the better answer than the accepted one – Joshua Jun 11 '12 at 22:57
3  
doesnt work in IE6, IE7... – supercoolville Jul 19 '12 at 5:36
5  
This didn't work for me in Chrome 20.0.1132.57, but the accepted answer did. – Thought Jul 29 '12 at 1:38
7  
I just want to get across that negative margins are perfectly valid CSS and should not be viewed as a "dirty hack". Negative margins are mentioned in the W3C box model specification. Some individuals seem to arbitrarily decide it is a hack because they a) are ignorant to them, or b) are using them to fix their bad CSS. – JosephJaber Aug 16 '12 at 1:33
4  
the width of the div to be centered has to be set - won't work automagically with, say, a button with text on it. – Stefan Jan 27 at 11:12
show 8 more comments

Really nice post.. Just wanted to add if someone wants to do it with single div tag then here the way out:

Taking width as 900px.

#styleName {
    position: absolute;
    left: 50%;
    width: 900px;
    margin-left: -450px;
}

In this case one should know the width beforehand.

share|improve this answer

As far as I know, this is impossible to achieve for an unknown width.

You could - if that works in your scenario - absolutely position an invisible element with 100% width and height, and have the element centered in there using margin: auto and possibly vertical-align. Otherwise, you'll need Javascript to do that.

share|improve this answer
+1 for the "margin: auto" thing. I've tried this before to horizontally centre a div using the line "margin: 0 auto" - the "0" applying to the vertical margins and the "auto" the horizontal. I think this is what StackOverflow uses for the very top level div to get the 2 thick white borders down the sides of the page. However, the W3Schools page on CSS margin states for the auto value that "The result of this is dependant of the browser" - I've not personally tried it across many different browsers, so I can't really comment on this point (but it obviously does the trick in some of them) – Steg Nov 21 '09 at 22:23

Heres a useful jQuery plugin to do this. Found here. I don't think it's possible purely with CSS

/**
 * @author: Suissa
 * @name: Absolute Center
 * @date: 2007-10-09
 */
jQuery.fn.center = function() {
    return this.each(function(){
    		var el = $(this);
    		var h = el.height();
    		var w = el.width();
    		var w_box = $(window).width();
    		var h_box = $(window).height();	
    		var w_total = (w_box - w)/2; //400
    		var h_total = (h_box - h)/2;
    		var css = {"position": 'absolute', "left": w_total+"px", "top":
h_total+"px"};
    		el.css(css)
    });
};
share|improve this answer
this is the better way, and especially with repsonsive design. – badfoo Oct 18 '12 at 10:58

I'd like to add on to @bobince's answer:

<body>
    <div style="position: absolute; left: 50%;">
        <div style="position: relative; left: -50%; border: dotted red 1px;">
            I am some centered shrink-to-fit content! <br />
            tum te tum
        </div>
    </div>
</body>

Improved: /// this makes the horizontal scrollbar not appear with large elements in the centered div.

<body>
    <div style="width:100%; position: absolute; overflow:hidden;">
        <div style="position:fixed; left: 50%;">
            <div style="position: relative; left: -50%; border: dotted red 1px;">
                I am some centered shrink-to-fit content! <br />
                tum te tum
            </div>
        </div>
    </div>
</body>
share|improve this answer

Searching for an solution I got answers above and could make content centered with Matthias Weiler answer but using text-align.

#content{
  position:absolute;
  left:0;
  right:0;
  text-align: center;
}

Worked with chrome and Firefox.

share|improve this answer

I have used similar solution:

#styleName {
    position: absolute;
    margin-left: -"X"px;
}

Where "X" is half of the width of a div I want to display. Works fine for me in all browsers.

share|improve this answer

Or even smaller code!

#content{
position:absolute;
margin:0 auto;
}
share|improve this answer
2  
it will not work in all browsers – ish1301 Aug 3 '12 at 0:19
Doesn't work in Chrome – Bartosz Feb 4 at 17:31

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.