因此,與圓線,我想實現這一結果:創建中間
這是我當我嘗試:https://jsfiddle.net/wvdkmjge/
.container {
width: 100px;
height: 1px;
background-color: black;
}
.circle {
display: inline-block;
vertical-align: middle;
width: 10px;
height: 10px;
background-color: transparent;
border: solid 1px black;
border-radius: 50%;
}
<div class="container">
<div class="circle">
</div>
</div>
此外,我希望我不會在圓上看到邊框線。有什麼建議麼?
尼斯一個OP。你說**我希望圓上沒有邊界線**,並添加**'border:solid 1px black;'** –