我需要調整圖像並將其裁剪到它的包裝中。html圖像不適合圖像包裝
<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中縮放或裁剪它?
感謝
感謝真棒圖書館;)工作美麗!翹起拇指,並按照我需要的尺寸創造它們;) –