我有一个带有一个边框的圆圈,但我想知道是否有办法实现一个带有两个不同颜色边框的圆圈。我有如下的 CSS 生产圈:
.circle {
width: 20px;
height: 20px;
border-radius: 12px;
border: 1.5px solid #fff;
font-family: Cambria;
font-size: 11px;
color: white;
line-height: 20px;
text-align: center;
background: #3E78B2;
}
.circle:hover {
width: 27px;
height: 27px;
border-radius: 18px;
font-size: 12px;
color: white;
line-height: 27px;
text-align: center;
background: #3E78B2;
}
您现在可以看到它有一些白色边框。我想在白色边框上添加另一个边框。
如果您有任何想法/建议,请告诉我。