1、按比例显示
code:
img{
width:auto;
height:auto;
max-height:100%;
max-width:100%;
}
2、居中
难点:同时保证水平、垂直居中
code:
img{
position:absolute /*子绝父相原则,父设置为相对定位*/
margin:auto;
left:0;
top:0;
right:0;
bottom:0;
}
3、示例

img.png
img{
width:auto;
height:auto;
max-height:100%;
max-width:100%;
}
img{
position:absolute /*子绝父相原则,父设置为相对定位*/
margin:auto;
left:0;
top:0;
right:0;
bottom:0;
}