Responsive Image full screen and centered - maintain aspect ratio, not exceed window

前端 未结 5 1203
慢半拍i
慢半拍i 2020-12-12 19:24

So I want an img to be displayed

  • as big as possible (filling the width when it is landscape / height when it is portrait)
  • no crop
  • <
5条回答
  •  囚心锁ツ
    2020-12-12 20:11

    yourimg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    }
    

    and make sure there is no parent tags with position: relative in it

提交回复
热议问题