I have one div on top of another. On hover, the bottom div (the right-side gray bar) slides out and is the same width as the top div: http://d.pr/OB6N. I'm trying to create a grid of images with slide-outs. Is there a way to set the width to be as much as is shown in the image? Because right now, when I inspect the element, the width is the total of the top div and the slide-out div (when fully slid out).

 HTML:
    <div class="poster">
     <img src="example.png" />
    </div>
    <div class="bottombox"></div>

CSS:

.poster {
    float: left;
    width: 250px;
    height: 375px;
    display: inline-block;
    position: relative;
    left: 0px;
    z-index: 1;
    -webkit-transition-duration: 0.2s;
}

.bottombox {
    float: left;
    width: 250px;
    height: 375px;
    display: inline-block;
    position: relative;
    left: -225px;
    -webkit-transition-duration: 0.2s;
}

.bottombox:hover {
    left: 0px;
}

Hope that makes sense. Thanks!

link|improve this question
feedback

1 Answer

So it would be much easier to help you if you created a jsfiddle to play with. That said, one approach is to make .bottombox a child of the .poster element

<div class="poster">
  <img src="example.png" />
  <div class="bottombox"></div>
</div>

then change the css of .poster to

width: auto

and change the css of .bottombox to

width: 100%;
position: absolute;
left: 25px;

and last set the hover definition to

left: 100%;
link|improve this answer
Ah, sorry. Here's the jsfiddle of what I had, hope it helps. jsfiddle.net/A2cPn/1 Thanks for the suggestion, though unfortunately it didn't quite work for me. One div was on top, and the other was on bottom, vertically. But they weren't "stacked" so to speak. – JackArrgon Feb 8 at 12:07
I've fixed your code, appears to be working now: jsfiddle.net/A2cPn/4 – penguinbroker Feb 8 at 19:12
Hey, that's great- thanks! Changed the z-index of .bottombox to -1, since I wanted it to be behind the actual poster, and when you hover over the poster, it slides out. Again, sweet. Thank you. – JackArrgon Feb 10 at 13:29
hey, can you check off this as the correct answer? :) Thanks and glad to help. – penguinbroker Feb 10 at 17:58
I actually didn't get your answer to work for me, but the code in the jsfiddle link you made, did the trick. – JackArrgon Feb 12 at 20:28
feedback

Your Answer

 
or
required, but never shown

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