当我尝试使用传单markercluster插件在地图中显示群集时,我遇到了这个问题。
这是两个屏幕截图,一个在FF36中制作,另一个在IE11中制作
Firefox: Internet Explorer:
不知何故,内圈的边框似乎没有正确显示。
我尝试使用background-clip
并设置border-color
,但似乎根本没有效果。
.circle {
width: 50px;
height: 50px;
border-radius: 25px;
background-color:rgb(181, 226, 140);
}
.circle div {
position: relative;
width: 30px;
height: 30px;
left: 10px;
top: 10px;
text-align: center;
border-radius: 15px;
background-color:rgb(111, 226, 140);
}

<div class="circle">
<div></div>
</div>
&#13;