Crop image in CSS

后端 未结 8 597
情书的邮戳
情书的邮戳 2021-01-12 07:23

I\'ve created a two-column grid of images, which works fine with all-landscape images: Link. However, I\'ve added a portrait image that throws off the layout, so I\'d like t

8条回答
  •  日久生厌
    2021-01-12 08:15

    How about this CSS:

    img { height: 280px; }
    .portrait-crop { height: 560px; }
    

    http://jsfiddle.net/91z2wxfy/2/

提交回复
热议问题