How to resize an image to fit in the browser window?

后端 未结 14 1222
再見小時候
再見小時候 2020-11-28 19:00

This seems trivial but after all the research and coding I can\'t get it to work. Conditions are:

  1. The browser window size is unknown. So please don\'t propose
14条回答
  •  情书的邮戳
    2020-11-28 19:32

    html, body{width: 99%; height: 99%; overflow: hidden}
    img.fit{width: 100%; height: 100%;}
    

    Or maybe check this out: http://css-tricks.com/how-to-resizeable-background-image/

提交回复
热议问题