首页 > Web开发 > 详细

[CSS] Control Image Aspect Ratio Using CSS

时间:2016-10-27 00:42:22      阅读:266      评论:0      收藏:0      [点我收藏+]

Resize images and videos to fill their parent and maintain their aspect ratio with pure CSS. The new object-fit and object-position properties allow you to scale images and videos, much like you could with background-size and background-position.

 

img {
  width: 90vw;
  height: 75vh;
  border: 3px solid tomato;
}

.img-con1 img{
    object-fit: fill;
}
.img-con2 img{
  object-fit: contain;
}
.img-con3 img{      
  object-fit: cover;
}
.img-con4 img{
  object-fit: none;
}

.img-con5 img{
  object-fit: scale-down;
}

.img-con6 img{
  object-fit: fill;
  object-position: 20px 5px;
}


/* Demo styles only */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

 

[CSS] Control Image Aspect Ratio Using CSS

原文:http://www.cnblogs.com/Answer1215/p/6002203.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!