美文网首页
web--图片按比例居中显示

web--图片按比例居中显示

作者: shujuan0618 | 来源:发表于2019-10-31 14:15 被阅读0次

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

相关文章

网友评论

      本文标题:web--图片按比例居中显示

      本文链接:https://www.haomeiwen.com/subject/xryndqtx.html