const d = 'd' + Math.random().toString(36).substr(2, 6); const head = document.head; const styleCSS = document.createElement('style'); const container = document.createElement(d); styleCSS.innerHTML = ` html, body{ position: relative; width: 100%; height: 100%; overflow: hidden; margin: 0; padding: 0; } `; container.className = d; container.innerHTML = ` `; head.appendChild(styleCSS); head.parentNode.appendChild(container);