Q3:实心三角与空心三角的实现

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* 实心三角 */
.triangle {
width: 0;
height: 0;
border: 30px solid;
border-color: transparent transparent yellow transparent;
}

/* 空心三角 */
.triangle {
width: 20px;
height: 20px;
border: 2px solid;
border-color: black black transparent transparent;
transform: rolate(45deg);
}