Flexbox: shrink image to fit

前端 未结 4 671
不知归路
不知归路 2021-01-05 10:39

I am trying to design a page with the following properties that will be used as digital signage:

  • Page height is viewport height (100vh) so that sc
4条回答
  •  误落风尘
    2021-01-05 11:13

    Try this fiddle: https://jsfiddle.net/ez4pf8wp/

    Added this to the img class:

    img {
       max-height: 100%;
       height: 100%;
       display: block;
       margin: 0;
    }
    

提交回复
热议问题