Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<head>
<style>
p.a {
  zoom: normal;
}
p.b {
  zoom: 150%;
}
p.c {
  zoom: 0.6;
}
</style>
</head>
<body>
<h1>The zoom Property</h1>
<h2>zoom: normal (default):</h2>
<p class="a">This is some text. The text will render as normal.</p>
<h2>zoom: 150%:</h2>
<p class="b">This is some text. The text is zoomed in.</p>
<h2>zoom: 0.6:</h2>
<p class="c">This is some text. The text is zoomed out.</p>
</body>
</html>