3
Q:

hiding default horizontal scrollbar css

.x-scroll-disabled {
	overflow-x: hidden;
}
4
overflow-x: hidden
1
/*for horizontal scroll functionality*/
.example{
  overflow-x: auto;
  flex-wrap: nowrap;
}

/* Hide horizontal scrollbar which you get after you use overflow-x as 
auto or hidden */
/*for Chrome, Safari and Opera */
.example::-webkit-scrollbar {
  display: none;
}
.example {
  -ms-overflow-style: none;  /*IE and Edge */
  scrollbar-width: none;  /* Firefox */
} 
0

New to Communities?

Join the community