3 <body style=
"font-family: Ahem; -webkit-font-smoothing: none;">
5 div.table { display: table; }
6 div.cell { display: table-cell; width:
50px; height:
50px; background-color: blue; }
7 div.row { display: table-row; }
8 div.test { background-color: green; width:
50px; height:
50px; }
11 <div class=
"table" id=
"table-1">
12 <div class=
"row" id=
"row-1">
13 <div class=
"cell"></div>
15 <div class=
"row" id=
"row-2">
16 <div class=
"cell"></div>
23 var divElement
= document
.createElement("div");
24 divElement
.setAttribute("class", "test");
28 function insertDiv(tableID
, beforeID
)
30 var table
= document
.getElementById(tableID
);
31 var before
= document
.getElementById(beforeID
);
32 table
.insertBefore(createDiv(), before
);
35 document
.body
.offsetTop
;
37 insertDiv("table-1", "row-2");