Remove Scrollbars

To remove scrollbars from your html / embed -place the following html in the style section of your html (embed). The style tag is as follows: <style> is an opening tag. </style> is the closing tag.

/* Hide scrollbar for Chrome, Safari and Opera */

body::-webkit-scrollbar {

display: none;

}


/* Hide scrollbar for IE, Edge and Firefox */

body {

-ms-overflow-style: none; /* IE and Edge */

scrollbar-width: none; /* Firefox */

}