How to scale image to fit the container?

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

    This should help, at least for your example. There might be some cases in which this will not work. In that case you have to find a js solution.

    .thumbnail img {
      height: 100%;
      width: auto;
    }
    

提交回复
热议问题