How to make centre cropped image responsive?

前端 未结 7 1193
余生分开走
余生分开走 2021-01-17 19:32

Based on an existing answer, I have managed to centre crop an image. I am having trouble making the centre cropped image responsive, though.

Question

7条回答
  •  一生所求
    2021-01-17 19:53

    just give width in % instead of px .

    .center-cropped-img {
        width: 640px;// add in %
        height: auto;
        overflow: hidden;
        margin: 10px auto;
        border: 1px red solid;
        position: relative;
    }
    

提交回复
热议问题