Hola
PosProdukcion
Un pequeño ejemplo:
Código PHP:
<html>
<head>
<script>
function tamano(valor) {
tam = parseFloat(document.body.style.fontSize);
tam += valor;
elem = document.getElementsByTagName('*');
for(i=0;ele=elem[i];i++)
ele.style.fontSize=tam+'em';
}
</script>
</head>
<body style="font-size:1em">
<input type="button" value="+" onclick="tamano(.2)" />
<input type="button" value="-" onclick="tamano(-.2)" />
<input type="button" value="algo" />
<p>Esto es el texto</p>
</body>
</html>
Saludos,