MicroTut: Centering a Div Both Horizontally And Vertically

Demo Download
The tips in this article are a bit outdated and although they still work, there are more-modern solutions for CSS centering. For a better technique you can read our article The Simplest Way To Center Elements Vertically And Horizontally.

While building web page layouts, you've probably been faced with a situation where you need to center a div both horizontally and vertically with pure CSS. There are more than a few ways to achieve this, and in this MicroTut I am going to show you my favorite involving CSS and jQuery.

But first, the basics:

Horizontal centering with CSS

It is as easy as applying a margin to a div:

.className{
    margin:0 auto;
    width:200px;
    height:200px;
}

To center a div only horizontally, you need to specify a width, and an auto value for the left and right margins (you do remember the shorthand declarations in CSS don't you?). This method works on block level elements (divs, paragraphs, h1, etc). To apply it to inline elements (like hyperlinks and images), you need to apply one additional rule - display:block.

Horizontal and vertical centering with CSS

Center a div both horizontally and vertically with CSS is a bit more tricky. You need to know the dimensions of the div beforehand.

.className{
    width:300px;
    height:200px;
    position:absolute;
    left:50%;
    top:50%;
    margin:-100px 0 0 -150px;
}

By positioning the element absolutely, we can detach it from its surroundings and specify its position in relation to the browser window. Offsetting the div by 50% from the left and the top part of the window, you have its upper-left corner precisely at the center of the page. The only thing we are left to do is to move the div to the left and to the top with half its width and height with a negative margin, to have it perfectly centered.

Horizontal and vertical centering with jQuery

As mentioned earlier - the CSS method only works with divs with fixed dimensions. This is where jQuery comes into play:

$(window).resize(function(){

    $('.className').css({
        position:'absolute',
        left: ($(window).width() - $('.className').outerWidth())/2,
        top: ($(window).height() - $('.className').outerHeight())/2
    });

});

// To initially run the function:
$(window).resize();

The functionality is inserted into a $(window).resize() statement, which is executed every time the window is resized by the user. We use outerWidth() and outerHeight(), because unlike from the regular width() and height(), they add the padding and the border width to the returned size. Lastly, we simulate a resize event to kick center the div on page load.

The benefit of using this method, is that you do not need to know how big the div is. The main disadvantage is that it will only work with JavaScript turned on. This however makes it perfect for rich user interfaces (such as facebook's).

Be sure to share your favorite methods in the comment section.

Bootstrap Studio

The revolutionary web design tool for creating responsive websites and apps.

Learn more

Related Articles

Loving the new Micro Tuts section. Keep up the good work! :)

Anton @osurain

Cool concept, looking forward to more Micro Tuts.

Nice tut! Loving how this is achievable in both CSS and jQuery so that you're not boxing yourself into one solution.

I want to see more like these! :)

"Cowboy" Ben Alman

Except that you can center things both horizontally and vertically using just CSS, and without knowing the container's size:

http://benalman.com/code/test/css-centering.html

(the jQuery used in this example is to simply show that you don't need to know the size of the element to keep it centered)

  • Ben
Martin Varsano

Thanks for the tip, Ben! It really helped a lot to finish a project I was working on.

Martin Angelov

Thanks for the comments fellas!

@ "Cowboy" Ben Alman

Interesting experiment. Kinda too hackish for me but there you have it - centering a div with css IS possible without knowing its size.

Milos Milikic

Thanks for vertical centering tut!

Lam Nguyen

Hi Martin, I'm fan of your MicroTut section now. It's very helpful. You are doing a good job, friend!

Great example Martin. One thing i noticed about this example is that when there is a vertical scroll on the page the element is centered to the position of the whole document. This can be fixed easily by replacing the document with window like:

left: ($(window).width() - $('.className').outerWidth())/2,
top: ($(window).height() - $('.className').outerHeight())/2

Micro Tuts section is a great idea, Always interesting to discover new css techniques.

Martin Angelov

@ Parag

Thank you for noticing that! I fixed it in both the article and the demonstration.

For those of you reading this comment, I had wrongly used $(document).width() and $(document).height() instead of $(window).width() and $(window).height().

The difference is that the $(document) methods return the size of the entire document, and the $(window) ones return only the dimensions of the browser window (the document can expand way beyond the browser window).

The example pages didn't have content which overflowed outside of the window, so the error went unnoticed.

Arun Shivaram

I prefer the jquery workaround .

This is an cool tut. Very useful ! Thanks a lot, i know for sure that il use this on few websites!

Tyron Bache

Brilliant, just what I've always wanted! Thanks to @smashingmag

Great micro tut :-)

however, i use a more dynamic solution for the second example. instead of giving the div a fix width and height and taking the half of the values as negative margin, i'm used to giving the div a % width, lets say: 20%
and a position: absolute; with left: 40%;.

Its quite the same...

thanks again :-) and keep up the good work

that's a neat little tut.

want more :)

Burnsville Web Design

I love this site! Very good tutorial laying out the differences between the two methods. I think, like most, that jQuery is the easiest solution but having to account for those 5% that don't have scripting turned on can be frustrating.

Great tutorial, tks!
I suggest in this section, a tutorial about how create equal height columns. I google a solution, but not the best.
Congratulations.

Goran Mitev

Excellent. :)

can i use your demos in my website?

Srinivas Reddy

All your tuts are awesome...i like very much..Explanation is very understandable...Keep on...........

Just what I was looking for. Thanks! :)

bnibbler

Those "microtuts" are excellent!
thanks a lot for those simple and useful tips.

Keep them comming!

Cool. Nice and simple solution.

This is just awsome. Have been using such painful solutions for months. Yours are clear, simple and perfect. Thank you so much.

I love these super handy tiny tuts, it's like a band aid for the brain just when you need it.

Simple and to the point tutorial.. Thank for clearing the concepts.

There is a little problem with this solution when the browser window is smaller than the content to be centered. If you rezise the browser to a height smaller than the centered content, a vertical scrollbar appears. That's good, but you can not reach the top of the content again. This problem is in all major browers...

Nicholas

Yeah! I've noticed this too. It can be a really bad problem when it comes to people's browsers full of toolbars, like my client's IE7. Yeah I know, this sucks, but what am I going to do if they like to use 1/4 of the window to see the content =P

I'm searching for some workaround that account's this problem, so when the window is smaller than the content it should snap to the top of the content. Does someone know how to do this?

when I initially open my my page the content is not centered then when I go and change the size of the window it snaps to the perfect spot int the center. I copied the code exactly... I am not sure why the $(window).resize(); dosent initially get the detentions... Should I place that higher in my document?

I am having this same issue...

did you guys ever figure out a solution to this? mine works but only after you resize the window.

I am also having this issue since I believe its because the function is on resize... since we havn't resized anything yet it takes the first time to actually run the function...

wondering if anyone has found a fix

This solution works for me, simply add "onLoad="$(window).resize()" to your <body> tag.

Ex:
<body onLoad="$(window).resize()">

Nick Meagher

This didn't really fix the problem, when you hard refresh (shift + refresh) its still having the same issue. Has anyone found a fix for this?

mate, that was handy! Thanks alot

There's a simple yet great jQuery plugin to center your content vertically and horizontally:
link

Perfectly worked for me..really nice tutorial..thank u very much.

Dex Barrett

I did a quick test to check the horizontal centering and it worked in FF and Chrome but it didn't work in IE (i have version 9). I didn't know you have to specify a Doctype so that it works in IE.

This seems to work fine: position:absolute;left:50%;top:50%;margin:auto

Works like a charm with jQuery.

Eduardo Mozart de Oliveira

The second example with CSS works like a charm!
Thank you!

See example here. Note it is only out by about 20px or so vertically http://phocks.org/words/dream/

Thanks, finally this annoying thing is done properly!

Anthony Lee

Great way to do in javascript!

struggled with this so long. i never thought about using negative margin to center the element - great work :)

What about : display:table-cell (for a parent element) then vertical-align ?