resize an image in proportion with CSS, is it possible?

前端 未结 2 1767
栀梦
栀梦 2021-02-03 15:44

Is there a way to resize images retaining their proportions with CSS?

The container has a fixed width and height

2条回答
  •  伪装坚强ぢ
    2021-02-03 16:17

    .theimage{
        width:100%;
        height:auto;
    }
    

    or

    .theimage{
        width:auto;
        height:100%;
    }
    

    Depending on how you wanna give the scale preference... :) :)

    Thats all.

提交回复
热议问题