css图片等比列放大

来源:互联网 发布:linux书籍 编辑:程序博客网 时间:2024/05/19 19:58
<style> .cli{        width: 400px;        height: 400px;        overflow: hidden;        position: relative; }    .cli img{        position: absolute;        margin: auto;        min-height: 100%;        min-width: 100%;        left: -100%;        right: -100%;        top: -100%;        bottom: -100%;    }</style><div  class="cli" style="background: green;">    <img src="images/11.jpg"></div>
0 0