How to scale image to fit the container?

后端 未结 7 729
我寻月下人不归
我寻月下人不归 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:36

     .thumbnail {
            height: 100%;
        }
    
        .thumbnail img {
            max-height: 100%;
            max-width: 100%;
            border: 1px solid red;
        }
    

提交回复
热议问题