blob: 0dfff7eedd3dac2fb7af85c40dc3027c3e865e48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
body { width: 500px; -moz-column-count: 2; }
body:first-letter { float: right; }
#s { padding: 0pt 200px; }
</style>
<script type="text/javascript">
function boom()
{
document.getElementById("s").appendChild(document.createElement("span"));
}
</script>
</head>
<body onload="boom();">x <span id="s"></span></body>
</html>
|