|
1 <!DOCTYPE html> |
|
2 <html> |
|
3 <head> |
|
4 <style> |
|
5 body { |
|
6 border: none; |
|
7 background: none repeat scroll 0% 0% transparent; |
|
8 margin: 0; |
|
9 min-width: 0px; |
|
10 min-height: 100px; |
|
11 width: 100px; |
|
12 height: 100%; |
|
13 direction: ltr; |
|
14 overflow: hidden; |
|
15 } |
|
16 |
|
17 .test-div { |
|
18 font-size: 22px; |
|
19 } |
|
20 </style> |
|
21 </head> |
|
22 <body role="textbox" hidefocus="true"> |
|
23 <div class="test-div div1">1</div> |
|
24 <div class="test-div div2">2</div> |
|
25 <div class="test-div div3">3</div> |
|
26 <div class="test-div div4">4</div> |
|
27 <div class="test-div div5">5</div> |
|
28 </body> |
|
29 <script type="text/javascript"> |
|
30 document.designMode = "on"; |
|
31 </script> |
|
32 </html> |