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
source
share