空の円(背景なし)の間に水平線を描こうとしています。 ?あなたのmargin-right
とmargin-left
は両方3em
なので透明な背景を持つ円の間の水平線
は私がcodepen
#wizard {
background-color: #eee;
display: inline-block;
padding: 15px;
}
#wizard .step {
display: inline-block;
width: 40px;
height: 40px;
background-color: transparent;
border: 1px solid #000;
border-radius: 50%;
text-align: center;
padding: 2px;
margin-right: 3em;
margin-left: 3em;
position: relative;
}
#wizard .step:after {
content: "";
display: block;
height: 1px;
background-color: #000;
position: absolute;
left: auto;
right: -100%;
width: 100%;
top: 50%;
}
#wizard .step:last-child:after {
display: none;
}
#wizard .step span {
padding: 11px;
display: block;
}
<div id="wizard">
<div class="step active">
<span>1</span>
</div>
<div class="step">
<span>2</span>
</div>
<div class="step">
<span>3</span>
</div>
</div>
は、なぜあなたはちょうど'左を使用することはできませんか? – Ricky
ハ。公正な質問。習慣の力、私は推測する - 私はまれに何でも '%'を使う。 – Rounin
私は問題を単離しました。これは、マウスを3つに移動することを選択できる空白のためです。 [jsfiddle](https://jsfiddle.net/rickyruizm/0bh5401w/)。 – Ricky