1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <!-- user_pref("layout.css.grid.enabled", true); --> <script> function boom() { document.documentElement.offsetHeight; document.getElementById("g").firstChild.remove(); } </script> </head> <body onload="boom();"> <div style="display: grid;" id="g">a b<br></div> </body> </html>