I'm trying to align images inside divs vertically... not a problem.
My problem arises with these conditions.
- The images will be undetermined & different sizes.
- The images are larger than the divs and need to be masked by the divs.
- The site that uses this is built on the 320 & up template, calling media queries to render the page for different screen sizes & therefor the containing divs differ depending on screen size.
- When viewed on smart phone/tablet devices the containing div will change size when the device is turned (no page refresh) – the image needs to remain centered.
I can't use display:table-cell because the images are larger than the div so with this option the hieght of the divs and overflow:hidden don't work.
I tried jQuery vAlign which works great.. if you're not changing the screen size (such as turning a device). As it's is called on (document).ready the page needs refreshing to update the alignment of the images.
Is there a way to trigger vAlign via media query?
If not is there a hack/fix to the table-cell method which will allow the smaller div to mask the larger img with overfolw:hidden ?
UPDATE: Been playing around with pure CSS (working example here) but still can't get it to work :(