How to maintain aspect ratio using HTML IMG tag

前端 未结 10 1508
面向向阳花
面向向阳花 2020-12-23 02:42

I am using an img tag of HTML to show a photo in our application. I have set both its height and width attribute to 64. I need to show any image resolution (e.g. 256x256, 10

10条回答
  •  时光取名叫无心
    2020-12-23 03:00

    here is the sample one

    div{
       width: 200px;
       height:200px;
       border:solid
     }
    
    img{
        width: 100%;
        height: 100%;
        object-fit: contain;
        }

提交回复
热议问题