-2

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;
}
Kyle
  • 4,097
  • 10
  • 44
  • 85

2 Answers2

0

make the height also 100%

img{
width:100%;
height:100%;
}
semirturgay
  • 4,033
  • 2
  • 28
  • 49
0

Put the image in a wrapper with height: 100%;; add same height: 100%; to the .img tag. DEMO

Mihey Egoroff
  • 1,529
  • 14
  • 20