图片在容器中等比例自动居中
Posted 吴翰哲
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了图片在容器中等比例自动居中相关的知识,希望对你有一定的参考价值。
.imgWrapper {
height: 400px;
heigth:200px;
background-image:ulr(../text.jpg);
background-origin: content-box; /*从content区域开始显示背景*/
background-position: 50% 50%; /*图片上下左右居中*/
background-size: contain; /*保持图像本身的宽高比例,将图片缩放到宽度或高度正好适应定义背景的区域*/
background-repeat: no-repeat;
}
以上是关于图片在容器中等比例自动居中的主要内容,如果未能解决你的问题,请参考以下文章