Detailed explanation of the characteristics, differences and conversion of px, em, rem and pt in CSS

Detailed explanation of the characteristics, differences and conversion of px, em, rem and pt in CSS

Concept introduction :

1. px (pixel): It is a virtual unit of length and a digital image length unit of the computer system. If px is to be converted into physical length, the precision DPI (Dots Per Inch) needs to be specified. DPI is usually optional when scanning and printing. The default for Windows is 96dpi, and the default for Apple is 72dpi.

2. em (relative length unit, relative to the font size of the text in the current object): It is a relative length unit, originally referring to the width of the letter M, hence the name em. It now refers to a multiple of the character width, and is used similarly to a percentage, such as: 0.8em, 1.2em, 2em, etc. Usually 1em=16px.

3. pt (point): is a physical unit of length, referring to one-seventy-second of an inch. pt=1/72(inch), px=1/dpi(inch)

4. rem (root em): It is a relative unit newly added in CSS3, which has attracted widespread attention. How is this unit different from em? The difference is that when you use rem to set the font size for an element, it is still a relative size, but it is only relative to the HTML root element. This unit combines the advantages of relative size and absolute size. It can be used to proportionally adjust all font sizes by only modifying the root element, while avoiding the chain reaction of compounding font sizes layer by layer. Currently, all browsers except IE8 and earlier support rem. For browsers that do not support it, the solution is also very simple, which is to write an extra declaration of absolute units. These browsers will ignore font sizes set in rem.

1. The problem of em and px

What is px?

px Pixel. Relative unit of length. Pixel px is relative to the display screen resolution. (Quoted from the CSS 2.0 manual)

Em is a relative unit of length. Relative to the font size of the text within the current object. If the font size of the inline text is not set manually, it is relative to the browser's default font size. (Quoted from the CSS 2.0 manual)

PX Features

1. IE cannot adjust the font size that uses px as the unit;

2. The reason why most foreign websites can be adjusted is that they use em or rem as font units;

3. Firefox can adjust px, em, and rem, but more than 96% of Chinese netizens use IE browser (or kernel).

What is em?

em refers to the font height, and the default font height of any browser is 16px. So all unadjusted browsers will conform to: 1em=16px. Then 12px=0.75em, 10px=0.625em. To simplify font-size conversion, you need to declare Font-size=62.5% in the body selector in CSS. This will change the em value to 16px*62.5%=10px, so 12px=1.2em, 10px=1em. In other words, you only need to divide your original px value by 10 and then use em as the unit.

em Features:

1em refers to the size of a font, which inherits the font size of the parent element, so it is not a fixed value. The default font size for any browser is 16px. Therefore, 12px = 0.75em. In practical applications, in order to facilitate conversion, the style is usually set as follows:

html { font-size: 62.5%; }

Thus, 1em = 10px. The 1.2em we often use is theoretically 12px. However, this conversion does not work in IE browser. 1.2em is slightly larger than 12px. The solution is to change 62.5% in the HTML tag style to 63%, that is:

html { font-size: 63%; }

In Chinese articles, there are usually two spaces at the beginning of a paragraph. If px is used as the unit, a 12px font needs to have 24px space, and a 14px font needs to have 28px space... This conversion is not universal. If we use the em unit, this problem can be easily solved. The size of one character is 1em, and the size of two characters is 2em. So, just define it like this:

p { text-indent: 2em; }

The difference between em and px font units

The font unit should be em instead of px. The reason is simply to support font scaling in IE6. When you press ctrl+scroll wheel on the page, the website with fonts in px will not respond. px is an absolute unit and does not support IE scaling, while em is a relative unit.
When I was adjusting this blog, I found that not only the fonts, but also the line spacing (line-height) and vertical height units should be em. Ensure integrity when scaling.

em has the following characteristics:
1. The value of em is not fixed;
2. em will inherit the font size of the parent element.

em rewrite steps:

1. Declare Font-size=62.5% in the body selector;
2. Divide your original px value by 10, and then use em as the unit;
It’s simple, right? If the problem can be solved with just the above two steps, no one would use px. After the above two steps, you will find that the fonts on your website are larger than you imagined. Because the value of em is not fixed and will inherit the size of the parent element, you may set the font size in the content div to 1.2em, which is 12px. Then you set the font size of the selector p to 1.2em, but if p is a child of content, the font size of p is not 12px, but 1.2em = 1.2 * 12px = 14.4px. This is because the font size of content is set to 1.2em. This em value inherits the size of its parent element body, which is 16px * 62.5% * 1.2=12px. As p is its child, em inherits the font height of content, which is 12px. So 1.2em of p is no longer 12px, but 14.4px.
3. Recalculate the em values ​​of the fonts that are enlarged. Avoid repeated declarations of font sizes, that is, avoid the phenomenon of 1.2 * 1.2 = 1.44 mentioned above. For example, if you declare the font size in #content as 1.2em, then when declaring the font size of p, it can only be 1em, not 1.2em, because this em is not that em. It inherits the font height of #content and becomes 1em=12px.
12px Chinese characters in IE:
When completing the em conversion, a strange phenomenon was discovered. The 12px (1.2em) Chinese character size obtained by the above method is not equal to the font size defined directly with 12px in IE, but is slightly larger. You just need to change 62.5% to 63% in the body selector and it will display normally. The reason may be that IE has limited precision in taking floating-point values ​​when processing Chinese characters. This phenomenon only occurs in Chinese characters of 12px, and does not exist in English. The solution is to change 62.5% in style.css to 63%.

2. Characteristics of rem

rem is a relative unit newly added in CSS3 (root em), which has attracted widespread attention. How is this unit different from em? The difference is that when you use rem to set the font size for an element, it is still a relative size, but it is only relative to the HTML root element. This unit combines the advantages of relative size and absolute size. It can be used to proportionally adjust all font sizes by only modifying the root element, while avoiding the chain reaction of compounding font sizes layer by layer. Currently, all browsers except IE8 and earlier support rem. For browsers that do not support it, the solution is also very simple, which is to write an extra declaration of absolute units. These browsers will ignore font sizes set in rem.

Example:

p {font-size:14px; font-size:.875rem;}

Notice:

The font unit you choose depends mainly on your project. If your user base uses the latest browsers, it is recommended to use rem. If compatibility is a concern, use px, or use both.

3. Font conversion table

Font Size

pt

px

em

First number

42pt

56px

3.5em

Xiaochu

36pt

48px

3em

34pt

45px

2.75em

32pt

42px

2.55em

30pt

40px

2.45em

29pt

38px

2.35em

28pt

37px

2.3em

27pt

36px

2.25em

Number One

26pt

35px

2.2em

25pt

34px

2.125em

Small one

24pt

32px

2em

Number Two

22pt

29px

1.8em

20pt

26px

1.6em

Secondary School

18pt

24px

1.5em

17pt

23px

1.45em

Number Three

16pt

22px

1.4em

Xiaosan

15pt

21px

1.3em

14.5pt

20px

1.25em

Number Four

14pt

19px

1.2em

13.5pt

18px

1.125em

13pt

17px

1.05em

Little Four

12pt

16px

1em

11pt

15px

0.95em

Number Five

10.5pt

14px

0.875em

10pt

13px

0.8em

Xiaowu

9pt

12px

0.75em

8pt

11px

0.7em

Number Six

7.5pt

10px

0.625em

7pt

9px

0.55em

Xiaoliu

6.5pt

8px

0.5em

Number 7

5.5pt

7px

0.4375em

Number Eight

5pt

6px

0.375em

This is the end of this article about the characteristics, differences and conversion details of px, em, rem, pt in CSS. For more relevant CSS px and em content, please search 123WORDPRESS.COM’s previous articles or continue to browse the related articles below. I hope that everyone will support 123WORDPRESS.COM in the future!

<<:  How to implement distributed transactions in MySQL XA

>>:  Detailed steps for deploying Microsoft Sql Server with Docker

Recommend

Several ways to generate unique IDs in JavaScript

Possible solutions 1. Math.random generates rando...

Three examples of blur background effects using CSS3

Let’s not start with the introduction and get str...

The difference and execution method of select count() and select count(1)

Count(*) or Count(1) or Count([column]) are perha...

How to set the height of the autosize textarea in Element UI

After setting textarea input in Element UI to aut...

MySQL full backup and quick recovery methods

A simple MySQL full backup script that backs up t...

js to achieve drag and drop sorting details

Table of contents 1. Introduction 2. Implementati...

Method of dynamically loading geojson based on Vue+Openlayer

Load one or more features <template> <di...

Implementation example of Nginx+Tomcat load balancing cluster

Table of contents introduction 1. Case Overview 2...

Summary of several key points about mysql init_connect

The role of init_connect init_connect is usually ...

Graphic tutorial on installing Ubuntu 18.04 on VMware 15 virtual machine

In the past few years, I have been moving back an...

Detailed explanation of MySQL combined query

Using UNION Most SQL queries consist of a single ...

Detailed explanation of DOM DIFF algorithm in react application

Table of contents Preface What is VirtualDOM? Rea...

mysql wildcard (sql advanced filtering)

Table of contents First, let's briefly introd...