📜  创建一个不规则形状的 div css 代码示例

📅  最后修改于: 2022-03-11 14:47:54.388000             🧑  作者: Mango

代码示例1
.wrapper {
    width: 100px;
    height: 100px;
    margin-left: 100px;
    perspective: 150px;
}

.test {
    height: 100px;
    width: 100px;
    background: red;
    transform: rotateX(45deg);
      transform: rotate(90deg);

}