OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <body style="font-family: ahem; -webkit-font-smoothing: none;"> | 3 <body style="font-family: Ahem; -webkit-font-smoothing: none;"> |
4 <style> | 4 <style> |
5 div.table { display: table; } | 5 div.table { display: table; } |
6 div.section { display: table-row-group; } | 6 div.section { display: table-row-group; } |
7 div.test { background-color: green; width: 50px; height: 50px; } | 7 div.test { background-color: green; width: 50px; height: 50px; } |
8 </style> | 8 </style> |
9 | 9 |
10 <div class="table" id="table-1"> | 10 <div class="table" id="table-1"> |
11 <div class="section" id="tbody-1"> | 11 <div class="section" id="tbody-1"> |
12 </div> | 12 </div> |
13 <div class="section" id="tbody-2"> | 13 <div class="section" id="tbody-2"> |
(...skipping 14 matching lines...) Expand all Loading... |
28 var before = document.getElementById(beforeID); | 28 var before = document.getElementById(beforeID); |
29 table.insertBefore(createDiv(), before); | 29 table.insertBefore(createDiv(), before); |
30 } | 30 } |
31 | 31 |
32 document.body.offsetTop; | 32 document.body.offsetTop; |
33 | 33 |
34 insertDiv("table-1", "tbody-2"); | 34 insertDiv("table-1", "tbody-2"); |
35 </script> | 35 </script> |
36 </body> | 36 </body> |
37 </html> | 37 </html> |
OLD | NEW |