我有下面的代碼: -CSS - 響應 - 作物左和背景圖像的右側部分爲您調整瀏覽器的寬度
.content {
width: 100%;
text-align: center;
overflow: hidden;
}
.expert-header {
position: relative;
width: 100%;
height: 565px;
display: block;
background-size: cover !important;
background: url(http://igoffice.m360.co.uk/wp-content/uploads/2016/08/paul-expert-header.jpg);
}
<div class="content">
<div class="expert-header" style="background:url(http://igoffice.m360.co.uk/wp-content/uploads/2016/08/paul-expert-header.jpg)" ;="">
</div>
</div>
我想達到什麼是: -
當您開始縮小瀏覽器寬度從1920px到1170px時,它會切斷(裁剪)圖像的左側和右側部分。
因此,如果瀏覽器寬度爲1720px,基本上100px將從圖像左側移除,100px從右側移除,但圖像將保留565px高度。
我該如何做到這一點?
我已經做了JSFIDDLE我現在的代碼。