中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

line-height和vertical-align的作用是什么

發布時間:2021-06-11 18:23:14 來源:億速云 閱讀:241 作者:Leah 欄目:web開發

line-height和vertical-align的作用是什么,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

  • line box:包裹 inline box 的一個盒子,一個或多個 line box 堆疊撐起一個 HTML 元素。

  • inline(-level) box:可以是一個由行內元素包裹的盒子,也可以是一個純文字的匿名盒子。

  • content area:對于非替換元素來說,content area 的范圍由 font-size 以及字體本身決定;對于替換元素來說,由元素自有寬高決定。

  • baseline:一個元素基線的位置由該元素內字母 x 底部所在的位置決定,當然字體不同基線所在的位置也就不同。

通過一段代碼可以理解一下:

div {
  background-color: #ccc;
  font-size: 20px;
  color: #fff;
}
span {
  color: red;
}
<div>文字1<span>文字2</span>文字3</div>

line-height和vertical-align的作用是什么

白色的文字就是一個匿名 inline box,紅色的文字是一個由 span 包裹的 inline box。這三個 inline box 組成一個 line box,可以理解為灰色的區域,因為在這個例子里就是由一個 line box 撐開了 div。如果有多行的文字,那就有多個 line box。

關于 content area,W3C 有一段這樣的解釋:

CSS 2.1 does not define what the content area of an inline box is (see 10.6.1 above) and thus different UAs may draw the backgrounds and borders in different places.

這篇文章對非替換元素 content area 的定義就是自有寬高加上 margin,padding 以及 border。我認為應該將 content area 理解為 content box。

line box 高度

瀏覽器會計算 line box 中每一個 inline box 的高度,對于不同的 inline box 計算方式有所不同:

如果是一個替換元素(比如 imginput),inline-* 元素或者是 flexbox 中的子元素,高度由其 margin box 決定;

inline-block 元素:

div {
  background-color: #ccc;
  color: #fff;
}
span {
  display: inline-block;
  height: 30px;
  margin: 10px;
  background: #fff;
  color: red;
}
<div>xxx<span>xxx</span>xxx</div>

line-height和vertical-align的作用是什么

這里 span inline box 的高度就是 height + margin 2。如果 height 的值是 auto,高度就是等于 line-height + margin 2。

如果是一個非替換元素,高度由它的 line-height 決定,而不是 content area,雖然有時候看起來像 content area 撐開了 line box 的高度。

div {
  background-color: #ccc;
  font-size: 20px;
  color: #fff;
  font-family: Sana;
}
span {
  background: #fff;
  color: red;
}
<div>xxx<span>xxx</span>xxx</div>

line-height和vertical-align的作用是什么

這張圖片可以明顯地看出撐開 line box 的是 line-height,而不是 content area。

這篇文章用了 virtual-area height 來表示 line-height 撐開的高度,而我的理解其實就是 inline box 的高度。

line box 中所有 inline box 的最高點以及最低點決定了它的高度(該計算包括了 strut 的高度,后文會提到 strut)。

非替換元素的的 margin,padding 以及 border 并不會影響 line box 高度的計算。當一個 inline-level box 的 line-height 小于 content area 的時候,line box 的高度就會小于 content area,此時元素的 background 以及 padding 等就會溢出到 line box 之外。

以下代碼可以說明這個問題:

div {
    background: #eee;
    border: 1px solid #000;
    box-sizing: border-box;
    font-size: 50px;
    line-height: 10px;
}
span {
    background: red;
    margin: 10px;
    padding: 10px;
}
<div><span>xxx</span></div>

line-height和vertical-align的作用是什么

leading:

content area 的高度與 inline box 的高度差就是 leading,這個 leading 會等分被添加到 content area 的頂部與底部,所以說 content area 永遠位于 inline box 的中間(垂直居中)。

strut:

瀏覽器認為每一個 line box 的起始位置都存在一個寬度為 0,沒有任何字符的 匿名 inline box,稱為 strut,這個 strut 是會從父元素繼承 line-height 的,因此它的高度會影響整個 line box 高度的計算。

一個例子

line-height和vertical-align的作用是什么

div { background: #eee; border: 1px solid #000; box-sizing: border-box; }
<div><img src="./image.png" alt=""></div>

在圖片中可以看到 img 與外層的 div 存在一個間隙,這就是上文提到的 strut 造成的。

在這個例子中,默認情況下 img 的底邊與父元素的基線對齊(img { vertical-align: baseline }),而這個基線實際上就是 strut 基線所在的位置。如下圖所示:

line-height和vertical-align的作用是什么

strut 其實就相當于一個不可見的字母 x,上文已經提到 strut 本身是具有 line-height 的,所以就導致圖片底部多了一段間隙。

總結一下存在間隙原因:

  • strut 存在 line-height

  • vertical-align 默認值為 baseline

對應的解決方案:

  • 修改 strut 的 line-height,因為 strut 的 line-height 不是能夠直接設置的,所以需要設置父元素的 line-height,然后讓 strut 繼承,或者修改 font-size

  • 將 vertical-align 設置為其他值line-height

W3C 中對于 line-height 的解釋是這樣的:

On a block container element whose content is composed of inline-level elements, 'line-height' specifies the minimal height of line boxes within the element. The minimum height consists of a minimum height above the baseline and a minimum depth below it, exactly as if each line box starts with a zero-width inline box with the element's font and line height properties. We call that imaginary box a "strut."

我的簡單理解是,對于由行內元素組成的塊級元素而言,line-height 決定了 line box 的最小高度,瀏覽器會假定每一個 line box 以一個寬度為 0 的 inline box (strut)開始,而這個 strut 從父元素繼承到 font 以及 line-height。

  • normal 是 line-height 的默認值,W3C 對它并沒有一個明確的定義。normal 會將 content area 作為一個計算因素。

  • line-height 并不是兩條 baseline 之間的距離。

  • line-height 的值推薦使用數值,而不是使用 em 單位,因為 em 單位會根據從父元素繼承到的 font-size 來計算行高。

vertical-align

W3C 對 baseline 以及 middle 的定義如下:

baseline: Align the baseline of the box with the baseline of the parent box. If the box does not have a baseline, align the bottom margin edge with the parent's baseline.

元素基線與父元素基線對齊,如果元素沒有基線,比如 img,則使用 margin 底邊與父元素基線對齊。

middle: Align the vertical midpoint of the box with the baseline of the parent box plus half the x-height of the parent.

元素的垂直中點位置與父元素的基線加上一半 x-height 的位置對齊。

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

彰武县| 许昌市| 汉川市| 孝感市| 洛隆县| 朔州市| 武安市| 柳林县| 吉木萨尔县| 赣州市| 成武县| 延吉市| 兴化市| 兴国县| 财经| 罗江县| 舞钢市| 黔东| 天长市| 都匀市| 宜春市| 甘孜县| 新晃| 长治县| 洛宁县| 永城市| 斗六市| 蛟河市| 桐城市| 水富县| 巧家县| 梁平县| 汕尾市| 德兴市| 德保县| 鲁甸县| 长沙县| 调兵山市| 成安县| 晋宁县| 白城市|