Css Fundamentals: Units
Css Fundamentals: Units
Units
IN A ROCKET
Learn front-end development at rocket speed
ABSOLUTE
RELATIVE
UNITS UNITS
(96px = 1 inch)
pt point
1/72 of 1 inch
(72pt = 1 inch)
ABSOLUTE
UNITS mm millimeter 1cm = 10mm
smaller dimension.
font-size: 20px
Container text.
.box {
font-size: 2em; Box 20x2
width: 4em;
20x4
}
font-size: 20px
Container text.
:root { font-size: 15px; }
Box 15x3
.box {
15x6
font-size: 3rem;
width: 6rem;
}
EM REM
h1 { h1 {
font-size: 2rem; /* 1em = 16px */
[font-size: 2em; /* 1em = 16px */
margin-bottom: 1em; /* 1em = 32px */ margin-bottom: 1rem; /* 1em = 16px */
} }
p { p {
font-size: 1rem; /* 1em = 16px */
[font-size: 1em; /* 1em = 16px */
margin-bottom: 1em; /* 1em = 16px */ margin-bottom: 1rem; /* 1em = 16px */
} }
.box { Box
width: 50vw; 50% of the viewport
}
.box { Box
height: 100vh; 100% of the viewport
}
inarocket .com
Learn front-end development at rocket speed
+ READY TO USE CODE
+ QUIZZES
+ FREE UPDATES
by miguelsanchez.com
inarocket .com
Learn front-end development at rocket speed
Units
IN A ROCKET
Learn front-end development at rocket speed