Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've got a container that's set to a max-width:780px and height is undeclared. Inside the container, there's an image slideshow. Everything on the page is responsive, so as the width decreases, the image (who's width is set to 100%) adjust's the heights container.

The slideshow change's the images to display:static; and position:absolute; which no longer "holds open" the container because it's not seen as content of the container

Is there any creative solution out there to take the height of a child element that's absolutely positioned?

Example below has NO height declared on the main container.. nothing's holding it open. http://dhut.ch/test/santos/

Thank you!

share|improve this question
Decided to use jQuery to handle it. See question below. stackoverflow.com/questions/6882019/… – technopeasant Aug 2 '11 at 10:45

3 Answers

Are the images all the same dimensions? If yes, you can use a percentage padding-top on the element that contains the images.

So if your images are all, say, 760px wide by 500px tall, that's 500/760 = .65789

Which as percentage would translate into something like:

#main { 
    position: relative; 
    max-width: 760px;
    padding-top: 65.789%;  
}

The reason this works is because with padding if it's set with a percentage, it is calculated as a percentage of the width. As the element shrinks in width, the height will shrink proportionately and the box will remain in the same ratio of width to height. The images, positioned absolutely, won't be adding to the height of the box.

This'll work as long as your images are all the same aspect ratio and you're not expecting that ratio to change. If you'll be using a lot of random images, this isn't for you.

share|improve this answer
Awesome, what a great idea! Thanks for this! – DanC May 30 '12 at 11:31

I think you'd better change your approach. For sliders, the best practices is to float child elements of the container, and also use one of the known techniques to prevent parent's great collapse. So, I suggest that you remove the position: absolute CSS rule from images and float them inside your <div id='main'>, then use any of these methods to force it to encompass it's children:

  1. div#main {overflow: hidden;}
  2. div#main:after {content: ''; display: block; clear: both; visibility: hidden;}
  3. Add a <div style='clear: both;'> to the end of your main div container.
share|improve this answer
Naemati - I'd LOVE to float them... but to have them fade one into another, they need to be positioned absolutely on top of each other. – technopeasant Jul 30 '11 at 8:23

Remove the absolute position. I would avoid inline styling as well.

share|improve this answer
I hear you, it's a pain in the ass. The inline style is being generated by the jquery slideshow, so there's no way to avoid it. – technopeasant Jul 30 '11 at 8:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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