#triangle{
width: 0;
height: 0;
border-top: 20px solid red;
border-left: 20px solid pink;
border-right: 20px solid yellowgreen;
border-bottom: 20px solid plum;
}
#sector{
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;
}

即可。
本文来自博客园,作者:Kitty_code,转载请注明原文链接:https://www.cnblogs.com/kitty-code/p/15598376.html
浙公网安备 33010602011771号