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