我需要将图像调整并裁剪到它的包装器中。
<div class="box desktop-3 tablet-3 tablet-ls-3 mobile-3">
<div class="inner-box fullbox">
<a href='#module'>
<div class="image-wrap" >
<img src="../img/placeholder.png" />
</div>
</a>
</div>
</div>
css
.box {
width: 282px;
min-height: 282px;
padding: 10px;
float: left;
}
.inner-box {
width: 100%;
min-height: 282px;
top: 10px;
right: 10px;
bottom: 10px;
left: 10px;
padding: 20px;
}
.fullbox {
padding: 0px;
}
.image-wrap {
...
}
我尝试将图像作为您在下面看到的背景,但这对我不起作用。我想从图像中获得一个适合box
.
.image-warpper {
background-image: url(...);
background-repeat: no-repeat;
background-size: contain;
}
我必须通过 php 裁剪图像还是可以在 css 中缩放或裁剪它?
谢谢