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).
|
feedback
|
|
You should use the
| |||||||
feedback
|
|
Jquery dimensions plugin.
| |||||||||||
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. | |||
feedback
|
|
also you can use this code: var divID = document.getElementById("divid"); var h = divID.style.pixelHeight; | |||
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:
This is the perfect solution. It centers | |||
|
feedback
|