其他分享
首页 > 其他分享> > CSS图片宽高比自适应

CSS图片宽高比自适应

作者:互联网

CSS图片宽高比自适应


<div class="box">
    <div class="img-wrapper">
	  <img src="bear.jpg" class="image">
    </div>
</div> 

<style type="text/css">
	.box{
		width: 330px;
	}
	.img-wrapper{
		overflow: hidden;
		width: 100%;
		height: 0;
		/*让图片宽高比为10:3,图片高度自动撑开为宽度的30%*/
		padding-bottom: 30%;  
	}
	.image{
		width: 100%
	}
</style>

在这里插入图片描述
50%时:padding-bottom: 50%;
在这里插入图片描述
100%时:padding-bottom: 100%;(图片宽高都为330px
在这里插入图片描述


让图片的宽和高都为最外层父元素宽度的50%

<div class="box">
    <div class="img-wrapper">
	  <img src="bear.jpg" class="image">
    </div>
</div> 

<style type="text/css">
	.box{
		width: 330px;
		border: solid black 2px;
	}
	.img-wrapper{
		width: 50%;  /*令图片宽度为最外层父元素宽度的50%*/
		padding-bottom: 50%;  /*使图片的宽高比为1:1,图片高度与父元素高度无关*/
	}
	.image{
		width: 100%
	}
</style>

在这里插入图片描述
30%时:

.img-wrapper{
	width: 30%;
	padding-bottom: 30%;
}

在这里插入图片描述

标签:bottom,100%,50%,padding,width,宽高比,30%,CSS,图片
来源: https://blog.csdn.net/weixin_45996045/article/details/114710816