-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,261
  • 11
  • 46
  • 85

2 Answers2

0

make the height also 100%

img{
width:100%;
height:100%;
}
semirturgay
  • 4,151
  • 3
  • 30
  • 50
0

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

Mihey Egoroff
  • 1,542
  • 14
  • 23