I'v noticed, that some webpages fit mobile devices. I know how to do elements positioning for mobiles, etc. My problem are fonts. Those mobiledevices, have pretty high screen resolution. And fonts are too small, because of small screen.
Can I somehow larger fonts on smaller screens?
You would have to target retina display in that case. There is different ways of approaching that. Most likely you are doing a fully responsive site so I would recommend just doing a media query to target retina "hi-res" and set your font-size, margins ect.
@media
(-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
/* Retina-specific stuff here */
}
Source: css-tricks.com
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With