-
-
Save xhezairbey/32a69219b96a3bbfff9c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Android stock browser won't let you set font-size smaller than 8px unless you apply this. */ | |
:root { | |
-webkit-text-size-adjust: none; | |
-moz-text-size-adjust: none; | |
-ms-text-size-adjust: none; | |
-o-text-size-adjust: none; | |
text-size-adjust: none; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Place this within a <script> in your <head>, prior to your stylesheet | |
Then use rems instead of px globally - your site will scale 1:1 with viewport width | |
*/ | |
function remCalibrate() { | |
document.documentElement.style.fontSize = window.innerWidth/100 + 'px'; | |
} | |
remCalibrate(); | |
window.addEventListener('resize', remCalibrate, false); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment