I certainly do not want to add to the pile of vertical alignments CSS questions, but I've spent hours trying to find a solution to no avail yet. Here's the situation:

I am building a slideshow gallery of images. I want the images to be displayed as large as the user's window allows. So I have this outer placeholder:

<section class="photo full">

(Yes, I'm using HTML5 elements). Which has the following CSS:

section.photo.full { 
    display:inline-block;
    width:100%; 
    height:100%; 
    position:absolute;
    overflow:hidden; 
    text-align:center;
}

Next, the image is placed inside it. Depending on the orientation of the image, I set either the width or height to 75%, and the other axis to auto:

$wide = $bigimage['width'] >= $bigimage['height'] ? true: false; ?>
<img src="<?= $bigimage['url'] ?>" width="<?= $wide? "75%" : "auto"?>" height="<?= $wide? "auto" : "75%"?>"/>

So, we have a fluid outer container, with inside a fluid image. The horizontal centering of the image works, yet I cannot seem to find a way to vertically center the image within it's container. I have researched centering methods but most assume either the container or image has a known width or height. Then there is the display:table-cell method, which does not seem to work for me either.

I'm stuck. I'm looking for a CSS solution, but am open to js solutions too.

link|improve this question

@Ferdy Is the SECTION element a direct child of BODY? – Šime Vidas Feb 5 '11 at 23:23
@Ferdy Also, post an sample of the resulting HTML code for the IMG element. – Šime Vidas Feb 5 '11 at 23:24
@Sime: Yes. Hereby a temp demo page: ferdy.dnsalias.com/apps/jungledragon/html/tag/92/slideshow/… – Ferdy Feb 5 '11 at 23:50
@Ferdy Why do you set min-height:75%? – Šime Vidas Feb 6 '11 at 0:12
@Sime. Sorry, I am live developing. I have it removed now. I have this other problem, in IE8 the big image is only 1 pixel high. – Ferdy Feb 6 '11 at 0:14
show 1 more comment
feedback

2 Answers

up vote 4 down vote accepted

This works out fine:

section.photo.full {
  display: table;
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  text-align: center;
}

section.photo.full a {
  outline: 0;
  display: table-cell;
  vertical-align: middle;
}

section.photo.full img {
  margin-top: 0;
}

I'm guessing display table-cell hadn't worked for you because it's parent container wasn't displayed as a table.

Here is a demo in jsfiddle:

http://jsfiddle.net/duopixel/5wzPS/

link|improve this answer
You the man! That indeed works. Still having this other problem with IE8 showing the image only 1 pixel high but thats another challenge to take on. – Ferdy Feb 6 '11 at 0:21
By the way, I do notice two side effects afer the fix: 1. the a href seems to have span the width of the entire window instead of 75%. You can see this by hovering next to the image, the cursor will indicate a pointer. 2. when widening the window a lot, a vertical scrollbar appears. It seems the overflow:hidden stopped working :( – Ferdy Feb 6 '11 at 0:26
if you are willing to apply an extra div your problem might dissappear: section.photo.full > extradiv > a > img, then apply table-cell to extradiv – Duopixel Feb 6 '11 at 2:41
@Duopixel. You rock, dude. That works just great. I now got myself quite a robust slideshow! – Ferdy Feb 6 '11 at 13:12
@DuoPixel. Hmmmm, it seems one other issue popped up: overflow:hidden stopped working. This means that scrollbar appears when users resize their window to a certain dimension :( I'm in doubt whether to accept this caveat or to undo the fix. tough call. – Ferdy Feb 6 '11 at 13:31
show 1 more comment
feedback

Maybe this works for you (div is the div wrapped around your image):

div {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

Running example.

link|improve this answer
The OP said that the container is fluid – Šime Vidas Feb 5 '11 at 23:37
Indeed, the parent container is fluid too. – Ferdy Feb 5 '11 at 23:48
feedback

Your Answer

 
or
required, but never shown

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