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{
width:auto;
height:auto;
max-height:100%;
max-width:100%;
}
img{
position:absolute /*子绝父相原则,父设置为相对定位*/
margin:auto;
left:0;
top:0;
right:0;
bottom:0;
}
本文标题:web--图片按比例居中显示
本文链接:https://www.haomeiwen.com/subject/xryndqtx.html
网友评论