387058-2.html (282B)
1 <html> 2 <head> 3 <script> 4 function boom() 5 { 6 document.getElementById("div").style.letterSpacing = ""; 7 } 8 </script> 9 </head> 10 11 <body onload="boom()" style="font-family: monospace; width: 3em;"> 12 <div id="div" style="white-space: pre-wrap; letter-spacing: 1em;"> 13 x 14 15 </div> 16 </body> 17 </html>