那麼,通常當我需要對齊框旁邊的文本,我這樣做: https://codepen.io/Maartinshh/pen/yMdNrW,但我聽說它使用 填充和邊距這種工作的可怕的錯誤。有其他選擇嗎?將文本對齊到另一個元素的最佳方法?
<div class="box"></div>
<div class="text">Text</div>
.box{
background-color:blue;
width: 70px;
height: 70px;
}
.text{
padding-left: 80px;
margin-top: -40px;
}
使用inline-block的+垂直對齊:中間兩個DIV –