width: 0;
height: 0;
border-top: 20px solid red;
border-left: 20px solid pink;
border-right: 20px solid yellowgreen;
border-bottom: 20px solid plum;
}
width: 0;
height: 0;
border-radius: 50%;
border-top: 20px solid red;
border-left: 20px solid pink;
border-right: 20px solid yellowgreen;
border-bottom: 20px solid plum;
}
例如: 上三角 上扇形:
#triangle{
width: 0;
height: 0;
border-top: 20px solid red;
border-left: 20px solid transparent;
border-right: 20px solid transparent;
border-bottom: 20px solid transparent;
}
#sector{
width: 0;
height: 0;
border-radius: 50%;
border-top: 20px solid red;
border-left: 20px solid transparent;
border-right: 20px solid transparent;
border-bottom: 20px solid transparent;
}
即可。
|