您的位置:首页 > Web前端 > CSS

css图片等比列放大

2017-02-17 11:56 176 查看
<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>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  css