zoukankan      html  css  js  c++  java
  • vertical-align:middle的居中细节调整

      使用vertical-align:middle可以让行级元素垂直居中,但这个居中是以文字的中线来计算的,而文字的中线在不同的字体上不同,甚至相同的字体在不同的浏览器上显示的都不同。

      所以直接使用vertical-align:middle很难完美居中,因此需要其它调整。

    <!DOCTYPE html>
    <style>
    div {
      border:1px solid red;
      200px;
      height:100px;
      line-height:100px;
      text-align:center;
    }
    span {vertical-align:middle;}
    #box {
      display:inline-block;
      100px;
      height:98px;
      background:#EEE;
    }
    </style>
    <div>
      abc<span id="box"></span>def
    </div>

      

      当容器内存在vertical-align:middle元素时,它们的中线会被对其到所在行的基线上。

      而所在行的基线未必是中线,基线与中线偏离的距离就是vertical-align:middle垂直居中时候出现的偏离距离。

      基线与中线的位置差异会受到字体、字形、字号,等影响。而且在不同浏览器上字体的渲染还存在差异,这样就不容易计算具体的偏差。

      但我们可以取消掉基线和中线的位置差,做法是将字号改到0,也就是不在行中直接使用文本节点。

    <!DOCTYPE html>
    <style>
    div {
      border:1px solid red;
      200px;
      height:100px;
      line-height:100px;
      text-align:center;
      font-size:0px;
    }
    span {
      vertical-align:middle;
      display:inline-block;
      font-size:1rem;
    }
    #box {
      100px;
      height:98px;
      background:#EEE;
    }
    </style>
    <div>
      <span>abc</span><span id="box"></span><span>def</span>
    </div>
  • 相关阅读:
    LeetCode Longest Uncommon Subsequence II
    Leetcode Longest Uncommon Subsequence I
    LeetCode 557. Reverse Words in a String III
    LeetCode 394. Decode String
    LeetCode 419. Battleships in a Board
    LeetCode 366. Find Leaves of Binary Tree
    LeetCode 408. Valid Word Abbreviation
    LeetCode 532. K-diff Pairs in an Array
    LeetCode Minimum Absolute Difference in BST
    LeetCode 414. Third Maximum Number
  • 原文地址:https://www.cnblogs.com/aobingyan/p/3898334.html
Copyright © 2011-2022 走看看