iT邦幫忙

第 11 屆 iThome 鐵人賽

DAY 19
3

倘若不斷向深處扎根,就能茁壯成長 - RM

前言

這一篇中我們要提到關於 line-height 這個屬性,可以用在設定 block container box 中包含的 line box 高度,在提到這個屬性時,我們得知道關於 line box 高度算法的概念,在前面的篇章中,我們也有稍微提及到 line box,那事不宜遲,我們開始吧~!

line box 高度計算

規範直通車:
Visual formatting model details
規範定義:
As described in the section on inline formatting contexts, user agents flow inline-level boxes into a vertical stack of line boxes. The height of a line box is determined as follows:

  1. The height of each inline-level box in the line box is calculated. For replaced elements, inline-block elements, and inline-table elements, this is the height of their margin box; for inline boxes, this is their 'line-height'. (See "Calculating heights and margins" and the height of inline boxes in "Leading and half-leading".)
  2. The inline-level boxes are aligned vertically according to their 'vertical-align' property. In case they are aligned 'top' or 'bottom', they must be aligned so as to minimize the line box height. If such boxes are tall enough, there are multiple solutions and CSS 2.1 does not define the position of the line box's baseline (i.e., the position of the strut, see below).
  3. The line box height is the distance between the uppermost box top and the lowermost box bottom. (This includes the strut, as explained under 'line-height' below.)

根據規範定義,line box 高度不受單一原因影響,主要會受到下面三種因素影響:

  1. line box 中每個包含的 inline 元素高度,對於替換元素指的是它的 margin box 高度,對於 inline boxes 來說指的是它的 line-height
  2. 每個 inline-level box 元素所設定的 vertical-align 數值。
  3. line box 的高度會取決於最高的 box 和最低的 box 位置。

每個字型都有所謂的 font metrics,即每個字體所佔空間(如下圖)有所謂的基線到頂部 ascender 在 CSS 中簡稱為 A,基線到底部 Descender 簡稱為 D,font metrics 便是指它們所佔有的空間,而如果今天我們對一個 inline-level box 設定 line-height: x 便會有 leading,去支撐 xAD 間差異,leading 計算方式為:L = 'line-height' - AD (L可為負值)

圖片出處:Typography Tutorial

舉例來說:我們今天設置一個 <div> 內部包含了 <span>,我們對這個 <span> 設置了 Xpx 的 line-height 多於字體 font metrics 的值便會除與二,平分在 A、D 之上、下,稱為 half-leading

line-height

https://ithelp.ithome.com.tw/upload/images/20191004/20111825RTcShItMJ5.png

預設值:normal
繼承:會

通常會應用在 block container box 內含的 line hight 設定,設定 line box 最小高度。

normal

使用默認值,約為 1.2,這取決於元素的 font-family。

<數字>

該屬性的應用值是這個無單位數字<數字>乘以該元素的字體大小。大多數情況下,這是設置 line-height 的推薦方法,不會在繼承時產生不確定的結果。

<長度>

以單位數值去做計算:rem、em...。

<百分比>

與元素自身的字體大小有關。計算值是給定的百分比值乘以元素計算出的字體大小。

實例應用數值計算:

div {line-height:1.2; font-size:10pt} / * number * / 
div {line-height:1.2em; font-size:10pt} / * length * / 
div {line-height:120%; 字體大小:10pt} / *百分比* /

上面三組的數值會結果相同。Codepen

https://ithelp.ithome.com.tw/upload/images/20191004/20111825a17AFdLb2J.png

無障礙:考慮到無障礙,主要段落之間的 line-height 應設置至少為 1.5 基於字體大小(WCAG) ,這是考量到認知阻礙者、閱讀困難的用戶,以及低可視性以下的體驗,如果文字需要隨著頁面縮放,請使用無單位數值(以元素的字體大小乘以數值)。
一般瀏覽器的預設規範建議 line-height: normal 為 1.2~1.0 基於字體大小。

Tells user agents to set the used value to a "reasonable" value based on the font of the element. The value has the same meaning as . We recommend a used value for 'normal' between 1.0 to 1.2.


資料來源:

  1. Visual formatting model details
  2. 鉄人28号FX 鉄人16号「行高怪」line-height - iT 邦幫忙::一起幫忙解決難題,拯救 IT 人的一天
  3. Deep dive CSS: font metrics, line-height and vertical-align - Vincent De Oliveira
  4. Web Content Accessibility Guidelines (WCAG) 2.1
  5. Typography Tutorial
  6. line-height - CSS(层叠样式表) | MDN

About MDN by Mozilla Contributors is licensed under CC-BY-SA 2.5


以上的部分有任何錯誤的地方,歡迎指正呦~非常感謝~~XD


上一篇
話說 Float 是什麼?
下一篇
話說 Overflow 是什麼呢?
系列文
每天來點 CSS Specification30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

1 則留言

0
JinWen
iT邦新手 5 級 ‧ 2019-10-05 08:06:51

感謝這篇解惑/images/emoticon/emoticon42.gif,難怪很常設line-height字都扁成一團...

/images/emoticon/emoticon42.gif

我要留言

立即登入留言