行內元素中的行高
確定行內元素中行高的機制可能很複雜。以下是澄清細微差別的深入解釋:
內聯框的高度
內聯元素創建由行高定義的內聯框:
The height of the inline box encloses all glyphs and their half-leading on each side and is thus exactly 'line-height'.
因此,如果將行內元素的line-height 設為15px,則其框高度將為15px。
行框的高度
但是,包含行內框的行框也有定義的高度:
The height of a line box is determined by the rules given in the section on line height calculations.
對於行內框在行高相等且垂直對齊的情況下,行框的高度等於行高。所以,在這種情況下,行框高度也是15px。
行內框內容區域的高度
瀏覽器的開發者工具經常顯示高度行內框中的內容區域。此高度通常由字體的最大上升部分和下降部分決定:
The height of the content area should be based on the font, but this specification does not specify how.
因此,即使設定了font-size,內容區域的高度也可能會有所不同,並且可能大於行高與line -height 相同的值。
綜上所述,與行內元素相關的各種高度包括:
以上是行高如何影響行內元素及其框的高度?的詳細內容。更多資訊請關注PHP中文網其他相關文章!