aspect-ratio 控制css盒子宽高比
<style>
.box{
background-color: burlywood;
display: inline-block;
aspect-ratio: 1/2; //宽高比
}
</style>
<body>
<div class="box" contenteditable="true">
124515
</div>
</body>
contenteditable 盒子内容可修改
<style>
.box{
background-color: burlywood;
display: inline-block;
aspect-ratio: 1/2; //宽高比
}
</style>
<body>
<div class="box" contenteditable="true">
124515
</div>
</body>