How to scale image to fit the container?

后端 未结 7 926
我寻月下人不归
我寻月下人不归 2021-02-02 10:09

I have an image list, I want images scaled into their containers which have same size. like this:

\"a\"

7条回答
  •  暖寄归人
    2021-02-02 10:32

    .thumbnail {
        height: 100px;
        display: table;
    }
    
    .thumbnail img {
        height: 100%;
        width: 100%;
        display: table-cell;
        vertical-align: middle;
    }
    

提交回复
热议问题