嘿,我喜欢创建一个看起来像
我在 a 类中使用 css 边框半径样式创建了圆圈,并按 id 分隔颜色
我的 sass 看起来像是圈子
.works_section{
margin-top: 80px;
.work_circles{
float: left;
width: 201px;
height: 201px;
border-radius: 101px;
display: block;
position: relative;
img{
display: block;
margin: 0 auto;
margin-top: 65px;
}
p{
margin-top: 15px;
color: white;
text-align: center;
font-weight: bold;
}
}
//id的dat分隔颜色
#firstblu_circle{
@extend .work_circles;
background-color:$blue;
z-index: 1;
}
#yello_circle{
@extend .work_circles;
background-color:$pale_yello;
z-index: 2;
left: -21px;
}
#radiumgreen_circle{
@extend .work_circles;
background-color:$green;
z-index: 1;
left: -42px;
}
#pink_circle{
@extend .work_circles;
background-color:$pnk;
z-index: 2;
left: -63px;
}
#lastblu_circle{
@extend .work_circles;
background-color:$del_blue;
z-index: 1;
margin-left: -82px;
}
}
And circle is look like
现在的问题是我需要在圆圈的相交区域中添加白色,正如我之前通过图像描述的那样。有没有可能的方法来通过 css 获得它?
我的小提琴是