CSS: 100% width or height while keeping aspect ratio?

前端 未结 14 2628
粉色の甜心
粉色の甜心 2020-11-28 21:05

Currently, with STYLE, I can use width: 100% and auto on the height (or vice versa), but I still can\'t constrain the image into a specific positio

14条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-28 21:35

    I use this for a rectangular container with height and width fixed, but with images of different sizes.

    img {
      max-width: 95%;
      max-height: 15em;
      width: auto !important;
    }
    

提交回复
热议问题