如何在右侧裁剪图像以匹配包含元素的宽度?

时间:2014-03-16 00:22:31

标签: html css image crop

1 个答案:

答案 0 :(得分:0)

实现这一目标的一种方法是使用图像作为crop元素的背景,而不是单独的元素。

例如:

.crop {
    width: 200px;
    height: 150px;
    overflow: hidden;
    background: url('some-path/some-image-to-be-cropped');
}

See JSFiddle demo