How to make centre cropped image responsive?

前端 未结 7 1337
余生分开走
余生分开走 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 20:06

    Does this Fiddle do the right cropping?

    With the following CSS we can maintain the aspect ratio of the container when resizing the window.

    width: 640px;
    max-width: 100%;
    height: 0;
    padding-bottom: 50%; // 320px or lower (half of the width)
    

提交回复
热议问题