インラインブロック要素(14x14px)を単一行の行(高さと行高= 20px)に配置すると、それは親(垂直)です。 Line-height problem pictureインラインブロック要素の位置が1行で間違った垂直位置にある理由
HTML
<div class="status status_success"> Success</div>
<div class="status status_busy"> Busy</div>
<div class="status status_missed"> Missed</div>
CSS
body {
font-size: 16px;
line-height: 20px;
}
.status {
position: relative;
display: block;
white-space: nowrap;
border: 1px solid #000; // block border for helping test
margin: 0 0 20px;
&:before {
content: '';
display: inline-block;
vertical-align: middle;
width: 14px;
height: 14px;
background-color: #d6d6d6;
border-radius: 50%;
}
}
は、なぜそれが起こっている、私にしてください伝えるのか?
あなたは '表示する必要があります。 –