-1:000000000000 | 0:5027255fa334 |
---|---|
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <style> | |
5 | |
6 div:first-letter{} | |
7 | |
8 </style> | |
9 <script> | |
10 | |
11 function boom() | |
12 { | |
13 document.execCommand("selectAll", false, null); | |
14 document.execCommand("decreasefontsize", false, null); | |
15 } | |
16 | |
17 </script> | |
18 </head> | |
19 | |
20 <body onload="boom();" style="font-size: 0;"><div contenteditable="true" style="-moz-column-width: 1px; white-space: pre-line;"> | |
21 <span>T</span>his is text</div></body> | |
22 | |
23 </html> |