24 lines
580 B
HTML
24 lines
580 B
HTML
<html>
|
|
<body>
|
|
<style>
|
|
html {
|
|
transform-style: preserve-3d;
|
|
}
|
|
div,html {
|
|
display: inline-grid;
|
|
grid-template-columns: subgrid;
|
|
}
|
|
div {
|
|
position: fixed;
|
|
}
|
|
</style>
|
|
<script>
|
|
window.addEventListener('load', () => {
|
|
const div = document.createElementNS('http://www.w3.org/1999/xhtml', 'div')
|
|
const text = document.createTextNode('BAR')
|
|
div.appendChild(text)
|
|
document.documentElement.appendChild(div)
|
|
})
|
|
</script>
|
|
</body>
|
|
</html>
|