Comprehensive understanding of line-height and vertical-align

Comprehensive understanding of line-height and vertical-align
Previous words

Line-height, font-size, and vertical-align are key attributes for setting the layout of inline elements. These three properties are interdependent. Changing the distance between lines, setting vertical alignment, etc. require their cooperation. The relevant content of font-size has been introduced in detail in CSS fonts. This article will mainly introduce line-height and vertical-align.

line-height

definition

Line-height Line height refers to the distance between the baselines of text lines. Line-height actually only affects inline elements and other inline content, and does not directly affect block-level elements. You can also set line-height for a block-level element, but this value only has an effect when applied to the inline content of the block-level element. Declaring line-height on a block-level element sets a minimum line box height for the content of that block-level element.

Value: <length> | <percentage> | <number> | normal | inherit

Initial value: normal

Applies to: All elements

Inheritance: Yes

Percentage: relative to the element's font-size

the term

To understand line-height in depth, you need to understand the common terminology surrounding line box construction.

Content Area

For an inline non-replaced element or a portion of anonymous text, font-size and font-family determine the height of the content area. In the case of Songti, if the font-size of an inline element is 15px, the height of the content area is 15px; in the case of other fonts, the height of the content area is not equal to the font size

Inline Box

The content area plus the line spacing equals the inline box. If an inline non-replaced element has a font-size of 15px and a line-height of 21px, the difference is 6px. The user agent divides these 6 pixels in half and applies half to the top and bottom of the content area, which gives us the inline box.

When line-height is smaller than font-size, the inline box is actually smaller than the content area

Line Box

A line box is defined as the distance from the top of the highest inline box to the bottom of the lowest inline box in the line, with the top of each line box touching the bottom of the line box in the previous row.

Box Properties

Padding, margins, and borders do not affect the height of the line box, that is, they do not affect the line height

The border boundaries of inline elements are controlled by font-size instead of line-height

Margins are not applied to the top and bottom of inline non-replaced elements.

margin-left, padding-left, and border-left apply to the beginning of the element; margin-right, padding-right, and border-right apply to the end of the element

Replace elements

Inline replaced elements require a line-height value so that the element is positioned correctly when vertically aligned. Because the percentage value of vertical-align is calculated relative to the line-height of the element. For vertical alignment, the height of the image itself is not important, what matters is the value of line-height

By default, inline replaced elements are positioned on the baseline. If you add bottom padding, margin, or border to a replaced element, the content area will move up. The baseline of a replaced element is the baseline of the last line box in normal flow. Unless the replacement element is empty or its overflow attribute value is not visible, in which case the baseline is the margin bottom edge.

vertical-align

definition

vertical-align is used to set the vertical alignment. All vertically aligned elements will affect the row height.

Value: baseline | sub | super | top | text-top | middle | bottom | text-bottom | <length> | <percentage> | inherit

Initial value: baseline

Applies to: inline elements, replaced elements, table cells

Inheritance: No

Percentage: relative to the line-height of the element

[Note] The percentage value of vertical-align in IE7-browser does not support fractional line height, and the display effect when using baseline, middle, text-bottom and other values ​​is different from that of standard browsers. The common solution is to set the inline element to display: inline-block

CSS CodeCopy content to clipboard
  1. vertical-align : baseline baseline ( the baseline of the element is aligned with the baseline of the parent element)
  2. vertical-align : sub (lowers the baseline of the element to the appropriate subscript position of the parent element)
  3. vertical-align : super (raises the element's baseline to the appropriate superscript position for the parent element)
  4. vertical-align : bottom bottom (align the bottom of the aligned child elements with the bottom of the line box)
  5. vertical-align : text-bottom (align the bottom of the element with the bottom of the parent element's content area)
  6. vertical-align : top (align the top of the aligned child elements with the top of the line box)
  7. vertical-align : text-top (align the top of the element with the top of the parent element's content area)
  8. vertical-align : middle (the middle point of the element is aligned with the baseline of the parent element plus 1/2 the height of the letter X in the parent element)
  9. vertical-align : (+-n)px (the element is offset npx up and down relative to the baseline)
  10. vertical-align :x% (relative to the element's line-height value)
  11. vertical-align :inherit (inherit the value of the vertical-align property from the parent element)

[Note] <sub> and <sup> carry the style vertical-align:sub/super by default

inline-block bottom gap

The reason why inline-block elements leave gaps in block-level elements is that the default vertical alignment of images is baseline alignment (baseline alignment in principle aligns the bottom edge of the image with the bottom edge of the anonymous text capital letter X); and anonymous text has a line height, so the bottom edge of X is some distance from the line box, and this distance is the gap left by the image

Therefore, there are several solutions to this problem:

[1]display:block

Because vertical alignment can only be applied to replaced elements and inline elements, changing to a block-level element will invalidate the vertical alignment.

[2] Parent's line-height: 0

This makes the distance between the anonymous text and the line box zero.

[3]vertical-align: top/middle/bottom

application

【1】Center a single line of text horizontally and vertically

XML/HTML CodeCopy content to clipboard
  1. div{
  2. line-height: 100px;
  3. width: 100px;
  4. text-align: center;
  5. border: 1px solid black;
  6. }
  7.   
  8. <div> Test text </div>   

[Note] Many places say that to vertically center a line of text, you need to set the height and line height to the same value, but there is actually no need to set the height. Just set the line height, and the text in a line will be centered vertically.

【2】The image is approximately vertically centered

XML/HTML CodeCopy content to clipboard

  1. div{
  2. line-height: 200px;
  3. text-align: center;
  4. }
  5. img{
  6. vertical-align: middle;
  7. }
  8. < div >   
  9.      < img   src = "#"   alt = "#" >   
  10. </ div >   

Because the character X is not vertically centered in the em box, and the height positions of the character X in different fonts are inconsistent. So, when the font size is larger, this difference is more obvious

[Note] When writing block-level elements containing inline elements in IE7 browser, you must write them in line breaks instead of writing them in one line.


Copy code
The code is as follows:
//Correct 1<div> <img src="#" alt="#"></div>//Correct 2<div><img src="#" alt="#"><!-- Line break or space is required here--></div>//Error<div><img src="#" alt="#"></div>

【3】The image is completely vertically centered

Based on method 2, set the font-size of the block-level element to 0, and the image can be completely vertically centered.


Copy code
The code is as follows:
div{ line-height: 200px; text-align: center; font-size: 0;}img{ vertical-align: middle;}

Copy code
The code is as follows:
<div> <img src="#" alt="#"></div>

【4】Center multiple lines of text horizontally and vertically

Due to the limitation of method 3 that sets font-size to 0, text cannot be placed inside block-level elements. Method 4 mainly achieves the vertical centering effect by adding new elements. This method can also be used to center the image horizontally and vertically.

XML/HTML CodeCopy content to clipboard
  1. div{
  2. height: 100px;
  3. width: 200px;
  4. background-color: pink;
  5. text-align: center;
  6. }
  7. span{
  8. display:inline-block;
  9. vertical-align: middle;
  10. line-height: 20px;
  11. width: 100px;
  12. }
  13. i{
  14. display: inline-block;
  15. height: 100%;
  16. vertical-align: middle;
  17. }

XML/HTML CodeCopy content to clipboard
  1. < div >   
  2.         < i > </ i > < span > I am a very long, very long, very long, very long multi-line text </ span >   
  3.     </ div >     

【5】Icon and text alignment

<Method 1> Use negative length

Copy code
The code is as follows:
img{ vertical-align: -5px;}

According to practical experience, a 20*20 pixel icon followed by a 14px text can achieve a better alignment effect if vertical-align is set to -5px

<Method 2> Use text bottom alignment

Copy code
The code is as follows:
img{ vertical-align: text-bottom;}

Using baseline will make the icon move upward; using top/bottom will be affected by other inline elements and cause positioning deviation; using middle requires the right font size and has low compatibility; using text-bottom is more appropriate and is not affected by line height and other inline elements

The above is the full content of this article. I hope it will be helpful for everyone’s study.

Original text: http://www.cnblogs.com/xiaohuochai/p/5271217.html

<<:  Four ways to modify the default CSS style of element-ui components in Vue

>>:  Detailed explanation of how to use Docker to build a simple Java development and compilation environment

Recommend

Three ways to communicate between React components (simple and easy to use)

Table of contents 1. Parent-child component commu...

MySQL 8.0.12 Installation and Usage Tutorial

Recorded the installation and use tutorial of MyS...

How to create a virtual environment using virtualenv under Windows (two ways)

Operating system: windowns10_x64 Python version: ...

Summary of Common Problems with Mysql Indexes

Q1: What indexes does the database have? What are...

JS realizes the card dealing animation

This article example shares the specific code of ...

How to express relative paths in Linux

For example, if your current path is /var/log and...

Using loops in awk

Let's learn about different types of loops th...

Detailed steps for Python script self-start and scheduled start under Linux

1. Python automatically runs at startup Suppose t...

Summary of Problems in Installing MySQL 5.7.19 under Linux

The first time I installed MySQL on my virtual ma...

MySQL Series Database Design Three Paradigm Tutorial Examples

Table of contents 1. Knowledge description of the...

How to configure CDN scheduling using Nginx_geo module

Introducing the Geo module of Nginx The geo direc...

Using CSS to implement image frame animation and curve motion

The basic principle of all animations is to displ...