問題展示:
div{
position:
width:100px;
height:100px;
}
div>img{
position:
width:
left:
top: 50%
transform:
-webkit-transform:
-moz-transform:
-ms-transform:
-o-transform:
display:
}
在chrome是不會抖動,但是在搜狗瀏覽器上圖片會上下抖動
解決方法:
div>img{
position:
width:
left: 0;
top: 0;
right:0;
bottom:0;
margin:auto;
display:
}