廣場

要建立正方形,請定義具有寬度和高度的元素。在下面的示例中,我們有一個元素,其中 widthheight 各為 100 畫素。

StackOverflow 文件

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