Learn the 6 essential CSS units: px, %, em, rem, vh, vw
Absolute unit. Fixed size, does not scale.
width: 200px;
Relative to parent element size.
width: 50%;
Relative to the element’s font-size.
font-size: 1.5em;
1em 1.5em 2em
Relative to root font-size (16px).
font-size: 2rem;
1rem 1.5rem 2rem
1vh = 1% of viewport height.
height: 100vh;
1vw = 1% of viewport width.
width: 80vw;