blob: ea393d02222a6df1602bb02cf439b4ee448382f3 (
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; 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>
|