vertical-align各屬性對比

測試用代碼html

<!DOCTYPE html>
<html>
<head>

    <style>
        #dd {
            //line-height: 300px;
            background-color: gray;
            position: relative;
            font-size: 60px;
            //height: 300px;
        }
        #dd > .middle {
            position: absolute;
            top: 50%;
            height: 1px;
            background-color: black;
            left: 0;
            right: 0px;
        }
        #dd span {
            background-color: green;

        }
    </style>
  </head>
<body>
    <div id="dd">
        <img style="height:60px;width:100px;background-color:red;"><span>xg</span>
        <div class="middle"></div>
    </div>
</body>
</html>

 

默認的是按baseline對齊測試

去掉圖片試試:spa

 這裏xg span的高度是60,68的高度是line-height,上圖高72是圖片把div撐開了,能夠看出span的底部到baseline的距離是83d

給img添加 vertical-align:bottom; 後:code

圖片和div的底邊對齊htm

vertical-align:text-bottomblog

和<span>對齊圖片

vertical-align:sub;it

和vertical-align:bottom;相似,可是更低一些io

vertical-align:middle;

圖片偏下了

將img的height改爲1試一試

原來是跟x居中對齊了

相關文章
相關標籤/搜索