求教CSS3怎么画扇形

2025-12-18 06:39:44
推荐回答(1个)
回答1:

#fan{
width:0;
height:0;
border-radius:100px;
border-width:100px;
border-style:solid;
border-color:red transparent transparent transparent;
line-height:99em;
overflow:hidden;
cursor:pointer;
margin: 30px auto;
}

其实原理就是css制作三角型之后加上圆角属性