Font size for mobile only
-
-
Hi there, it’s sort of hard to determine what width is “mobile” anymore with nearly 100 screen sizes on mobile devices, but I typically use 600px, so the CSS to increase the font size for mobile would be this.
@media screen and (max-width: 600px) { #access { font-size: 150%; } }
- The topic ‘Font size for mobile only’ is closed to new replies.