我有一个带有一个边框的圆圈,但我想知道是否还有一个带有两个不同颜色边框的圆圈。我有以下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;
}
你可以看到它目前有一些白色边框。我想在白色边框上添加另一个边框。
如果您有任何想法/建议,请与我们联系。
答案 0 :(得分:11)
你也可以这样做:
.container {
background-color: grey;
height: 200px;
padding:10px; // ADD THIS ALSO
}
.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;
box-shadow: 0 0 0 3px #002525; // JUST ADD THIS LINE AND MODIFY YOUR COLOR
}
优势在于您还可以设置模糊效果,如下所示:
box-shadow: 0 0 3px 3px #002525;
答案 1 :(得分:1)
如果我理解正确,我认为您希望按照以下方式做一些事情:http://jsfiddle.net/QCVjr/1/
.circle {
width: 20px;
height: 20px;
border-radius: 12px;
border: 1.5px solid #000;
font-family: Cambria;
font-size: 11px;
color: white;
line-height: 20px;
text-align: center;
background: #fff;
position: relative;
z-index: 1;
}
.circle:before {
position: absolute;
right: 2px;
top: 2px;
left: 2px;
bottom: 2px;
content: '';
background: #3E78B2;
border-radius: 25px;
z-index: -1;
}
.circle:hover {
width: 27px;
height: 27px;
border-radius: 18px;
font-size: 12px;
color: white;
line-height: 27px;
text-align: center;
background: #fff;
}
您会注意到我拍摄了原始背景色并将其添加到:before
伪元素,将#fff
移动到背景,并使其他边框颜色(在此示例中, #000
)原始元素的边框颜色。 <{1}} es都需要获得正确的分层。