标签:UNC mon sele color pac splay comm har com
<div class="wrapper">
<img src="./picture" alt="">
</div>
.wrap{
width: 50vw;
}
img{
width: 100%;
height: auto;
}
使用padding-top/padding-bottom实现
<div class="wrapper">
<div class="box"></div>
</div>
.wrap{
width: 50vw;
}
.box{
width: 100%;
height: 0;
padding: 0;
padding-bottom: 75%;
}
上述使用padding-bottom来撑开盒子,实现4/3的比例。但是如果box盒子要放入内容的话,可以使用绝对定位来充满盒子。
.box{
position: relative;
width: 100%;
height: 0;
padding: 0;
padding-bottom: 75%;
margin: 50px;
background-color: lightsalmon;
}
.content {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
标签:UNC mon sele color pac splay comm har com
原文地址:https://www.cnblogs.com/ylweb/p/12364435.html