A brief analysis of the differences between px, rem, em, vh, and vw in CSS

A brief analysis of the differences between px, rem, em, vh, and vw in CSS

Absolute length

px

px is the pixel value, which is a fixed length, like our meters and centimeters.

Relative length

Why do we need relative lengths like rem em etc?

Fixed length can no longer meet our current needs.

For example: When we reduce the size of our screen, we not only need to reduce the width and height of our box, but we also want to reduce the font size as well, so that the user experience will be better.

rem

The calculation relationship between rem and px

The value of rem is a multiple of px

By default, font-size = 16px, so 1rem = 16px

How to modify the relative calculation relationship between rem and px

We can and can only modify font-size: 32px in the html tag (because the html node is the root node, which is the r:root in rem), so 1rem = 32px

Code

<div class="div-rem">rem</div>
/* Usage of rem */
html{
    font-size:16px; // 1rem = 16px
}
.div-rem{
    width: 10rem; // 10rem = 10 x 16 = 160px
    height: 10rem; // 10rem = 10 x 16 = 160px
    font-size: 1rem; // 1rem = 16px
    background-color: #a58778;
}

em

The calculation relationship between em and px

The value of em is a multiple of px

By default, font-size = 16px, so 1em = 16px

How to modify the relative calculation relationship between em and px

We can modify the font-size on our element: 32px, so 1em = 32px

If the font-size is not set on our element, we can also set the font-size on the parent element to affect the em value used by our element (child element).

The difference between rem and em

Summarize

This is the end of this article about the differences between the units px, rem, em, vh, vw in CSS. For more information about the differences between px, rem, em, vh, vw, please search 123WORDPRESS.COM’s previous articles or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

<<:  Why MySQL chooses Repeatable Read as the default isolation level

>>:  A very detailed explanation of Linux C++ multi-thread synchronization

Recommend

Vue makes div height draggable

This article shares the specific code of Vue to r...

How to upgrade CentOS7 to CentOS8 (detailed steps)

This article uses a specific example to introduce...

Native js canvas to achieve a simple snake

This article shares the specific code of js canva...

JS uses map to integrate double arrays

Table of contents Preface Simulating data Merged ...

Tomcat components illustrate the architectural evolution of a web server

1. Who is tomcat? 2. What can tomcat do? Tomcat i...

Graphical explanation of the solutions for front-end processing of small icons

Preface Before starting this article, let’s do a ...

Ubuntu installation Matlab2020b detailed tutorial and resources

Table of contents 1. Resource files 2. Installati...

Detailed process of FastAPI deployment on Docker

Docker Learning https://www.cnblogs.com/poloyy/p/...

Summary of methods for writing judgment statements in MySQL

How to write judgment statements in mysql: Method...

Centos7 installation of MySQL8 tutorial

MySQL 8 new features: My personal opinion on MySQ...

Detailed tutorial on installing nacos in docker and configuring the database

Environment Preparation Docker environment MySQL ...

Analysis of the difference between emits and attrs in Vue3

Table of contents in conclusion Practice Analysis...

Solve the group by query problem after upgrading Mysql to 5.7

Find the problem After upgrading MySQL to MySQL 5...

How to implement web page compression in Nginx optimization service

Configure web page compression to save resources ...

Detailed explanation of how to synchronize data from MySQL to Elasticsearch

Table of contents 1. Synchronization Principle 2....