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!