Skip to content

怎么实现一个宽高自适应的正方形?

Posted on:2022年6月25日 at 14:35
.square {
  width: 10%;
  height: 10vw;
  background: tomato;
}
.square {
  width: 20%;
  height: 0;
  padding-top: 20%;
  background: orange;
}
.square {
  width: 30%;
  overflow: hidden;
  background: yellow;
}
.square::after {
  content: "";
  display: block;
  margin-top: 100%;
}
原文转自:https://fe.ecool.fun/topic/84f9d3f9-88aa-4441-8868-b7c834f796fc