CSS hide scrollbar when not scrolling code example

Example 1: hide scrollbar css

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

/* Hide scrollbar for IE, Edge add Firefox */
.scrollbar-hidden {
  -ms-overflow-style: none;
  scrollbar-width: none; /* Firefox */
}

Example 2: hide the scrollbar in css if not overflow

.myClass {
  /*auto will remove and add the scroll bar as needed*/
  overflow: auto;
}

Example 3: hide scroll bar when not needed

overflow: auto;

Example 4: how to hide scrollbar css

body {
  overflow-y: hidden; /* Hide vertical scrollbar */
  
  overflow-x: hidden; /* Hide horizontal scrollbar */
}