CSS COURSE • LESSON
📏 CSS Units
Master CSS and create modern responsive websites with EDUHUB CODE HUB.
CSS Units
CSS uses different units for sizes.
| Unit | Description |
|---|---|
| px | Pixels |
| % | Percentage |
| em | Relative size |
| rem | Root size |
| vw | Viewport width |
h1 {
font-size:5vw;
}