The problem is with my image. The img height is 1500px. That need to scroll down. I want the height to be as the height of the device display, like mobile and computer display.
img{
width:100%;
height:auto;
}
The problem is with my image. The img height is 1500px. That need to scroll down. I want the height to be as the height of the device display, like mobile and computer display.
img{
width:100%;
height:auto;
}
make the height also 100%
img{
width:100%;
height:100%;
}
Put the image in a wrapper with height: 100%;
;
add same height: 100%;
to the .img
tag.
DEMO