使用CSS进行图像裁剪

时间:2014-03-07 08:14:41

标签: css resize

如何使用CSS /编码裁剪图像?或者如何在其上找到教程?

所以我不希望图像被调整大小,而是要“切断”

1 个答案:

答案 0 :(得分:1)

如果您不对其应用widthheight属性/样式,则图片本身不会缩放。

调整容器大小,在其上应用heightwidth样式以及overflow:hidden

示例:

<div class="image-container">
    <img src="http://example.com/some-image.png" alt="example"/>
</div>

和css:

.image-container {
    width: 300px;
    height: 200px;
    overflow: hidden;
}

此外,如果您想调整图片的位置,请在其上应用position: relativetop bottom left right

.image-container img {
    position: relative;
    left: 20px;
    top: -50px;
}