如何设置一张图片在浏览器中垂直居中, 当图片超出屏幕时上下可滚动
<div class="file-wrapper">
<img class="file-position" src="1.jpg" alt="">
</div>
.file-wrapper{
width: 100%;
height: 100%;
background: #0e0e0e;
position: relative;
}
.file-position{
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
}
现在能垂直居中 但是图片过大的时候会截取 不能自动上下滚动
给wrapper加个
overflow:auto
不就行咯: