|
1 <html xmlns="http://www.w3.org/1999/xhtml"> |
|
2 <head> |
|
3 |
|
4 <script type="text/javascript"> |
|
5 |
|
6 function boom() |
|
7 { |
|
8 var d = document.getElementById("d"); |
|
9 var s = document.getElementById("s"); |
|
10 s.insertBefore(document.createTextNode("T"), s.firstChild); |
|
11 d.appendChild(s); |
|
12 s.appendChild(document.createTextNode("\n")); |
|
13 } |
|
14 |
|
15 </script> |
|
16 |
|
17 <style type="text/css"> |
|
18 |
|
19 div::first-letter { float: left; } |
|
20 |
|
21 </style> |
|
22 |
|
23 </head> |
|
24 |
|
25 <body onload="boom();"><div id="d"><span id="s">h</span></div></body> |
|
26 |
|
27 </html> |