max-height AND max-width with CSS only

前端 未结 6 1498
无人共我
无人共我 2021-02-02 07:43

First post for me here.

I\'m using a div to crop thumbnail images all in the same proportions (180wx170h). I\'m getting stuck when dealing with portrait as well as land

6条回答
  •  甜味超标
    2021-02-02 08:23

    You have the answer in you!

    Try:

    .crop img {max-height: 170px; max-width: 180px;}
    

提交回复
热议问题