553 B
553 B
title, type, language, tags, author, cover, dateModified
| title | type | language | tags | author | cover | dateModified | |
|---|---|---|---|---|---|---|---|
| Fluid typography | snippet | css |
|
chalarangelo | shell-focus | 2021-05-16T11:23:05+03:00 |
Creates text that scales according to the viewport width.
- Use the
clamp()CSS function to clamp the value offont-sizebetween1remand3rem. - Use the formula
8vw - 2remto calculate a responsive value forfont-size(1remat600px,3remat1000px).
<p class="fluid-type">Hello World!</p>
.fluid-type {
font-size: clamp(1rem, 8vw - 2rem, 3rem);
}