1638860-1.html (580B)
1 <html> 2 <body> 3 <style> 4 html { 5 transform-style: preserve-3d; 6 } 7 div,html { 8 display: inline-grid; 9 grid-template-columns: subgrid; 10 } 11 div { 12 position: fixed; 13 } 14 </style> 15 <script> 16 window.addEventListener('load', () => { 17 const div = document.createElementNS('http://www.w3.org/1999/xhtml', 'div') 18 const text = document.createTextNode('BAR') 19 div.appendChild(text) 20 document.documentElement.appendChild(div) 21 }) 22 </script> 23 </body> 24 </html>