編輯::解決,而不是使用變換,改變背景大小工作,謝謝大家。在最大寬度懸停時變換縮放「縮放」?
我想在保持最大寬度的同時保持其中一個div的縮放比例,就像縮放效果一樣,但是它會忽略最大寬度?
.Img2 {
position: relative;
height: 300px;
display: inline-block;
width: 400px;
float: left;
padding: 0;
cursor: pointer;
}
.box2 {
height: 300px;
max-width: 400px;
width: 400px;
display: inline-block;
background-size: contain;
background-position: center;
background-color: black;
}
.box2:hover {
transform: scale(1.03);
}
<li class="Img2">
<div class="box2"></div>
</li>
謝謝你固定的格式,我不知道如何創建片斷。 –