Get the root html element
Get the root <html>
element with:
const rootElement = document.documentElement
You can use this for things like getting the width of the viewport minus the scrollbars (if there are any)
const documentWidth = document.documentElement.clientWidth
-- end of line --