How do I align a <div> which contains an image (or flash) vertically with CSS. Height and width are dynamic.
|
|
|||||||||||||
|
|
This is a pure CSS2 solution for horizontally and vertically centering without known sizes of either container nor child. No hacks are involved. I discovered it for this answer and I also demonstrated it in this answer. The solution is based on The HTML:
And the CSS:
Tested on Win7 in IE8, IE9, Opera 11.51, Safari 5.0.5, FF 6.0, Chrome 13.0. The only caveat is IE7, for which the two innermost elements have to declared at one line, as demonstrated in this fiddle:
Note that the span's are also required for IE7. In every other browser, the span's may be div's. |
|||||||||||||
|
|
In addition to the other answers here, the CSS3 flexible box model will, amongst other things, allow you to achieve this. You only need a single container element. Everything inside it will be laid out according to the flexible box model rules.
The CSS is pretty simple, actually:
I've omitted vendor-prefixed rules for brevity. Here's a demo in which the img is always in the centre of the page: http://jsfiddle.net/zn8bm/ Note that Flexbox is a fledgling specification, and is only currently implemented in Safari, Chrome and Firefox 4+. |
|||
|
|
|
You can do this by using inline-blocks, one with Example 1: http://jsfiddle.net/kizu/TQX9b/ (a lot of content, so it's full width) Example 2: http://jsfiddle.net/kizu/TQX9b/2/ (an image with any size) In this example I use |
|||||
|
|
I would recommend this solution by Bruno: http://www.brunildo.org/test/img_center.html However, I ran into a problem w/ his solution w/r/t webkit. It appears that webkit was rendering a small space at the top of the HTML:
CSS:
And if I detect the browser to be IE I add an empty span element before the
Here's a JSFiddle with this code. |
|||||
|
|
Dušan Janovský, Czech web developer, has published a cross-browser solution for this some time ago. Read http://www.jakpsatweb.cz/css/css-vertical-center-solution.html |
|||||||||||
|
|
If you don't care about IE7 and below, you don't have to use multiple nested divs. If you have a div that you want to align vertically, that div is within some container (even if the container is your However, if you do care about IE7 and below, you will need an additional container to make it work (yes, via a hack). Take a look at this fiddle. It displays correctly in IE6-9 and other major browsers. |
|||
|
|
|
try the 50% padding trick:
|
||||
|
|
|
Did you check Stu Nichols solution? |
|||
|
|
|
This is possible if you know the height of the image or flash object to be centered. You don't need to know the container's height/width, but you do need to know the contained height/width. It's possible using float, clear and negative margins. Example: www.laurenackley.com homepage. html
css
If you don't know the inner elements width/height. You are out of luck with |
|||||||||||||||||
|
|
I'm afraid what you are describing is not possible using CSS alone, CSS does not know the width or height of the element in the DOM, so it cannot properly position it in the absolute center (vertically and horizontally). JavaScript however, can. Which is why that's what we will use. I will use jQuery here, because it is more understandable and comfortable. Notable things:
That's it, hope it helped you :) |
|||||||||||
|
