ボックスシャドウの内側と外側の両方を持つ円がありますが、不要な境界線が 1px あります。サークルだけでなぜこれが起こっているのかを理解し、解決策を共有してください。
.wrapper {
padding: 30px;
}
.circle {
width: 120px;
height: 120px;
border-radius: 50%;
box-shadow: inset 0 0 0 16px #f9f9f9, 0 0 0 16px #f1f1f1;
background: #32a500;
}
<div class="wrapper">
<div class="circle"></div>
</div>