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