Pobaw się tym:
<script type="text/javascript"> function resize()
{
var w = window.innerWidth, ref = 1024,
perc = Math.ceil(w * 100 / ref);
document.body.style.fontSize = perc + "%";
}
<body onload="resize()" onresize="resize()" style="font-size: 100%"> <p style="font-size: 1em">Lorem Ipsum
</p>