|
1 <html> |
|
2 <head> |
|
3 |
|
4 <style type="text/css"> |
|
5 |
|
6 body { |
|
7 -moz-column-count: 2; |
|
8 -moz-column-width: 100px; |
|
9 height: 200px; |
|
10 width: 400px; |
|
11 } |
|
12 .b { |
|
13 height: 300px; |
|
14 } |
|
15 .f { |
|
16 float: left; |
|
17 } |
|
18 .p { |
|
19 padding: 0pt 200px; |
|
20 } |
|
21 |
|
22 </style> |
|
23 |
|
24 <script type="text/javascript"> |
|
25 |
|
26 function boom() |
|
27 { |
|
28 var newDiv = document.createElementNS("http://www.w3.org/1999/xhtml", "div"); |
|
29 var a = document.getElementById("a"); |
|
30 a.appendChild(newDiv); |
|
31 } |
|
32 |
|
33 </script> |
|
34 |
|
35 </head> |
|
36 |
|
37 <body onload="boom();"><div class="f"><span class="p"></span></div><div id="a"><div class="b f"><input></div></div></body> |
|
38 |
|
39 </html> |