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