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