up vote 18 down vote favorite
8
share [g+] share [fb]

Suppose that I have a <div> that I wish to center in the browser's display (viewport). To do so, I need to calculate the width and height of the <div> element. What should I use for maximum browser compatibility? Looking for a solution that works on IE6+, FF2+, Opera and Webkit-based browsers (Safari 3+, Google Chrome).

link|improve this question
feedback

5 Answers

up vote 18 down vote accepted

You should use the .offsetWidth and .offsetHeight properties. Note they belong to the element, not .style.

var width = document.getElementById('foo').offsetWidth;

link|improve this answer
8  
Beware! offsetHeight/offsetWidth can return 0 if you've done certain DOM modifications to the element recently. You may have to call this code in a setTimeout call after you've modified the element. – Dan Fabulich Jan 19 '10 at 5:59
Documentation about .offsetWidth and .offsetHeight: developer.mozilla.org/en/Determining_the_dimensions_of_elements – Denilson Sá Oct 22 '11 at 23:19
feedback

Jquery dimensions plugin.

var height = $("#myDiv").height();
var width = $("#myDiv").width();

var docHeight = $(document).height();
var docWidth = $(document).width();
link|improve this answer
2  
is there a way to do it without jQuery? – warren Nov 16 '08 at 19:30
Of course, jquery uses native javascript to do it. Download the plugin and look at the code if you want to do it yourself. However, you said what should I use for maximum browser compatibility? -- jquery is your friend. – tvanfosson Nov 16 '08 at 19:34
Prototype has getHeight() and getWidth(), if you prefer that. – tvanfosson Nov 16 '08 at 19:41
I'm actually using MochiKit for this project, so jQuery isn't an option (yet). – snortasprocket Nov 16 '08 at 20:03
feedback

element.offsetWidth and element.offsetHeight should do, as suggested in previous post.

However, if you just want to center the content, there is a better way of doing so. Assuming you use xhtml strict DOCTYPE. set the margin:0,auto property and required width in px to the body tag. The content gets center aligned to the page.

link|improve this answer
I think he wants to center it vertically too, which is a right pain with CSS unless you can meet some specific criteria (e.g. known-size content) – Greg Nov 16 '08 at 19:53
feedback

also you can use this code: var divID = document.getElementById("divid");

var h = divID.style.pixelHeight;

link|improve this answer
Hmm, works in Chrome and IE9, doesn't appear to work in Firefox. Does it only work for certain doc types? – BrainSlugs83 Aug 19 '11 at 20:00
feedback

You only need to calculate it for IE7 and older (and only if your content doesn't have fixed size). I suggest using HTML conditional comments to limit hack to old IEs that don't support CSS2. For all other browsers use this:

<style type="text/css">
    html,body {display:table; height:100%;width:100%;margin:0;padding:0;}
    body {display:table-cell; vertical-align:middle;}
    div {display:table; margin:0 auto; background:red;}
</style>
<body><div>test<br>test</div></body>

This is the perfect solution. It centers <div> of any size, and shrink-wraps it to size of its content.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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