Reputation: 95
I've seen a lot of posts on how to adjust font-size using media queries for different devices. But is there is way to make the font bigger or smaller solely based on how wide your screen is? So if you shrink your browser window to the narrowest possible width, the font size would be small but font size would be big if you maximize your window.
Upvotes: 1
Views: 1567
Reputation: 147
Rather than using an additional library, I prefer using: viewport, media query, and a font size that is adjusted based on the screen size.
1vw = 1% of viewport width
1vh = 1% of viewport height
1vmin = 1vw or 1vh, whichever is smaller
1vmax = 1vw or 1vh, whichever is larger
The css:
@media(max-width:767px){
.image-thumbnail > p{
font-size: 3.0vw;
}
}
CSS-Tricks has more about this technique: Viewport Sized Typography
Upvotes: 1