1
我試圖垂直居中直列塊這樣的:行高不垂直中心內聯塊
div {
width: 50px;
height: 50px;
background: red;
line-height: 50px;
}
span {
display: inline-block;
width: 20px;
height: 20px;
background: white;
}
<div>
<span></span>
</div>
但跨度不垂直居中。爲什麼?
它仍然不居中。跨度爲16px,下方爲14px。 – Gropai