js-challenges icon indicating copy to clipboard operation
js-challenges copied to clipboard

实现宽高比例固定的 div

Open lzxjack opened this issue 2 years ago • 2 comments

lzxjack avatar Jan 12 '23 06:01 lzxjack

<div class="box"></div>

<style>
  .box {
    background-color: red;
    width: 500px;
  }
  .box::after {
    display: block;
    content: '';
    padding-top: 50%;
  }
</style>

lzxjack avatar Jan 12 '23 06:01 lzxjack

px不就是固定的吗? 题目是怎么描述的呀?

bey1995 avatar Sep 17 '24 13:09 bey1995