<div class="constant-width-to-height-ratio"></div>
.constant-width-to-height-ratio {
background: #333;
width: 50%;
}
.constant-width-to-height-ratio::before {
content: '';
padding-top: 100%;
float: left;
}
.constant-width-to-height-ratio::after {
content: '';
display: block;
clear: both;
}
padding-top在…上::before伪元素使元素的高度等于其宽度的百分比。100%因此表示元素的高度始终为100%的宽度,创建一个响应正方形。
此方法还允许内容正常放置在元素内部。