Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Css - dynamic font size

Tags:

css

We are developing a website for a school project: this website must also be available on mobile devices (and tablets).
We have attained this goal, except for an issue with the font-size: we've set this property manually via @media query.

Does there exist a way by make the font-size can be made dynamic without the use of percent?

Thanks


1 Answers

If I understand your question, you should consider this option:

.yourClass {
    font-size: 2.0vw;
}

It meaning 2.0% of viewport width. You can also use 2.0vh (2.0% viewport height)

like image 159
Azincourt Avatar answered Aug 23 '26 07:08

Azincourt



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!