vote up 8 vote down star
14

The title says it all really.

flag

37% accept rate
This is more of a CSS question than a jQuery question. You can use jQuery methods to help you find the cross-browser positioning and to apply the proper CSS styles to an element, but the essence of the question is how to center a div on the screen using CSS. – Chris MacDonald Oct 17 '08 at 0:20

5 Answers

vote up 22 vote down check

I like adding functions to jQuery so this function would help:

jQuery.fn.center = function () {
    this.css("position","absolute");
    this.css("top", ( $(window).height() - this.height() ) / 2+$(window).scrollTop() + "px");
    this.css("left", ( $(window).width() - this.width() ) / 2+$(window).scrollLeft() + "px");
    return this;
}

Now we can just write:

$(element).center();
link|flag
1  
I can't edit but note the missing dot on line 4; change "2+$(window)scrollTop()" to "2+$(window).scrollTop()" – eddiegroves Jan 27 at 3:27
thanx!! it works for me... – shruti Nov 30 at 12:40
vote up 0 vote down

The 1st answer supplied works perfectly! Good job, thanks for sharing!!!

link|flag
Could you use the comments feature for comments instead of the answers feature? Thanks. – David Dorward Jun 24 at 11:08
vote up 0 vote down

This is untested, but something like this should work.

var myElement = $('#myElement');
myElement.css({
    position: 'absolute',
    left: '50%',
    'margin-left': 0 - (myElement.width() / 2)
});
link|flag
vote up 2 vote down

Vertically

link|flag
Took a bit of experimentation to get it working, but this is good. – Marcus Downing Dec 4 at 16:45
vote up 5 vote down

Center it how? Horizontally, vertically, both? Do you want the div itself centered, or just the content?

To center horizontally:

.mydiv { margin-left: auto; margin-right: auto; }
link|flag

Your Answer

Get an OpenID
or

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