I'm trying to have a stack of divs with fullscreen image as its child, but the parent div height doesn't match the img height.
The CSS is not too complicated
.content {
overflow: hidden;
position: relative;
min-width: 1024px
}
.content img {
width: 100%;
height: auto;
}
Here's the JSBin http://jsbin.com/baqexonu/1/ , you'll notice a 2px gap between the divs
please help.