Full height image on a mobile device

How to post an image on a website I have an album (horizontal) image. I needed a place on mobile devices, so that the image whose height was the full height of the device ... And I need an accessible horizontal scroll. eg,enter image description here

+4
source share
1 answer

Example:

CSS file

html,body {
    height:100%;
    margin:0px;
}
.img-album {
    height:100%;
    overflow-y:hidden;
}
.img-album > img {
    height:100%;
}

HTML

<div class="img-album">
    <img src="http://cdn.wonderfulengineering.com/wp-content/uploads/2014/09/new-wallpaper-3.jpg" />
</div>

Jsfiddle

+2
source

All Articles