/* 基本的樣式 */
.slice {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #fff;
}
.slice:before,
.slice:after {
content: "";
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
border-left: 50px solid transparent;
border-right: 50px solid transparent;
border-bottom: 100px solid green;
}
.slice:after {
left: 0;
transform: rotate(-45deg);
}
/* 示例樣式 */
.slice:nth-child(1) {
background-color: #ffc;
}
.slice:nth-child(2) {
background-color: #fc0;
}
.slice:nth-child(3) {
background-color: #ff8;
}
.slice:nth-child(4) {
background-color: #ff4;
}
.slice:nth-child(5) {
background-color: #fc8;
}
.slice:nth-child(6) {
background-color: #ffc;
}