广场

要创建正方形,请定义具有宽度和高度的元素。在下面的示例中,我们有一个元素,其中 widthheight 各为 100 像素。

StackOverflow 文档

<div class="square"></div>
.square {
    width: 100px;
    height: 100px;
    background: rgb(246, 156, 85);
}