|
1 <html> |
|
2 <head> |
|
3 <script> |
|
4 function removestyles(i){ |
|
5 document.getElementsByTagName('*')[5].removeAttribute('style'); |
|
6 document.body.offsetHeight; |
|
7 document.getElementsByTagName('*')[6].removeAttribute('style'); |
|
8 document.body.offsetHeight; |
|
9 document.getElementsByTagName('*')[7].removeAttribute('style'); |
|
10 } |
|
11 |
|
12 setTimeout(removestyles,300); |
|
13 </script> |
|
14 |
|
15 </head> |
|
16 <body> |
|
17 <div style="position: relative; width: 500px;"> |
|
18 <span style="position: absolute; -moz-column-count: 2;"> |
|
19 <span style=" position: absolute;"> |
|
20 <span style=" display: inline-block; ">m</span> |
|
21 <input> |
|
22 <input style="position: fixed;">m |
|
23 </span> |
|
24 </span> |
|
25 </div> |
|
26 </body> |
|
27 </html> |