如何使用简单的CSS来创建不同类型的平面形

2025-03-10 23:42:23
推荐回答(1个)
回答1:

使用代码

矩形

.rectangle {
width: 250px;
height: 150px;
background-color: #6DC75F;
}


三角形

.triangleUp {
border-left: 75px solid transparent;
border-right: 75px solid transparent;
border-bottom: 150px solid  #6DC75F;
width: 0;
height: 0;
}


椭圆形

.oval {
width: 300px;
height: 150px;
background: #6DC75F;
-moz-border-radius: 150px / 75px;
-webkit-border-radius: 150px / 75px;
border-radius: 150px / 75px;
}


月牙形

.moon {
width: 150px;
height: 150px;
border-radius: 50%;
box-shadow: 15px 15px 0 0 green;
}


树叶

.leaf {
border-radius: 5px 300px 3px 300px;
background: #6DC75F;
width: 150px;
height: 150px;
}