(function() { function autoRootFontSize() { var deviceWidth = document.documentElement.clientWidth >= 768 ? 750 : document.documentElement.clientWidth; document.getElementsByTagName('html')[0].style.cssText = 'font-size:' + deviceWidth / 750 * 100 + 'px !important'; } window.addEventListener('resize', autoRootFontSize); autoRootFontSize(); })();