100% width background image with an 'auto' height

后端 未结 8 1216
慢半拍i
慢半拍i 2020-12-04 08:20

I\'m currently working on a mobile landing page for a company. It\'s a really basic layout but below the header there\'s an image of a product which will always be 100% widt

8条回答
  •  醉话见心
    2020-12-04 08:51

    It's 2017, and now you can use object-fit which has decent support. It works in the same way as a div's background-size but on the element itself, and on any element including images.

    .your-img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }
    

提交回复
热议问题