第661天 使用css制作一个圣诞树 [3+1官网](http://www.h-camel.com/index.html) [我也要出题](http://www.h-camel.com/contribution.html)
Activity
squid-Xu commentedon Feb 5, 2021
圣诞树
smalldice commentedon Feb 5, 2021
css片段:
.container {
display: flex;
flex-direction: column;
align-items: center;
}
.leaf {
width: 400px;
height: 700px;
clip-path: polygon(0% 100%, 50% 0%, 100% 100%);
background-color: green;
}
.bar {
width: 100px;
height: 200px;
background-color: chocolate;
}