css 画扇形

画扇形

.div{
    width:0;
    height:0;
    border-width:50px;
    border-style:solid;  // 到此,会显示正方形
    border-radius: 50px;  // 显示 圆
    border-color: #f00 transparent transparent;  // 圆的左右下边框设为透明,即为扇形。
}

猜你喜欢

转载自blog.csdn.net/Lyj1010/article/details/88637580