元素垂直中心点和父级基线上1/2 x-height的位置对齐, 1/2 x-height的位置就是x的交叉中心
2016-02-24
inline-block的基线是正常流中最后一个line box的基线,除非,这个line box 里面既没有line boxes 或者本身overflow属性有非visible的值,这种情况下基线是margin底边缘
2016-02-24
.button{
display: inline-block;text-align: center;width: 120px;height:32px;padding:15px;background-color: lightblue;border-radius: 5px;font-size: 23px;
}
<div class="button" style="line-height: 0">行高0</div>
<div class="button" style="line-height: 32px;">行高正常</div>
display: inline-block;text-align: center;width: 120px;height:32px;padding:15px;background-color: lightblue;border-radius: 5px;font-size: 23px;
}
<div class="button" style="line-height: 0">行高0</div>
<div class="button" style="line-height: 32px;">行高正常</div>
2016-02-20
字符有下沉特性,img元素vertical-align-middle只是近似居中(字符font-size越大,越为明显)
2016-02-17