remove html scroll bar

CSS
/* Hide scrollbar for Chrome, Safari and Opera */
.any-element::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE and Edge */
.any-element {
  -ms-overflow-style: none;
} 
Source

Also in CSS: