实现不定尺寸图片居中的几种方式
最终的解决方法如下:
<div class="box">
<img src="img/0.jpg" alt="earth shadow" title="It's me">
</div>.box {
width: 200px;
height: 200px;
position: relative;
text-align: center;
}
.box img {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: auto;
max-width: 200px;
max-height: 200px;
}方式二:使用表格布局
方式三:使用背景图片
Last updated