Search
 
SCRIPT & CODE EXAMPLE
 

CSS

hide scrollbar but still scroll

.class {
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}
.class::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}
Comment

Hide scroll bar, but while still being able to scroll

.container {
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}
.container::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}
Comment

hide scrollbar of a div but keep functionality

.class-called-body::webkit-scrollbar{
	display: none;
}
Comment

hide scroll bar but still be scrollable.

.element::-webkit-scrollbar { width: 0 !important }
Comment

hide scrollbar but still scroll

//Hide scrollbar completly (vertical & horizontaly) scrollbar but still able to scroll
/* replace ".container" with your "id" or "className" */
.container {
  -ms-overflow-style: none;  
  scrollbar-width: none;
}
.container::-webkit-scrollbar { 
  display: none; 
}
Comment

css hide scrollbar but scrollable

-webkit- (Chrome, Safari, newer versions of Opera):
.element::-webkit-scrollbar { width: 0 !important }
-moz- (Firefox):
.element { overflow: -moz-scrollbars-none; }
-ms- (Internet Explorer +10):
.element { -ms-overflow-style: none; }
Comment

PREVIOUS NEXT
Code Example
Css :: font-face html 
Css :: border buttom color 
Css :: how to create a circle with css 
Css :: maxheight media query 
Css :: scroll padding top in css 
Css :: square with 2 colors css 
Css :: input text only css 
Css :: @supports css 
Css :: flex justify-content 
Css :: import custom font 
Css :: creating drop shadow css 
Css :: how to add css using nativeelement in angular 
Css :: font face 
Css :: css table properties 
Css :: bootstrap progress bar animation not working 
Css :: force css style in angular 
Css :: css animation linear 
Css :: how to remove image using css 
Css :: css clicked event 
Css :: keyframe 
Css :: stop anchor tag scroll to top of page 
Css :: tailwind background gradient 
Css :: html input type colour internal border 
Css :: font awesome center icon vertically and horizontally 
Css :: grid repeat css 
Css :: transition 
Css :: font family css 
Css :: how to make distance betwwen corosel transition 
Css :: Cambiar el color de texto al hacer scroll css 
Css :: html css circle progress bar 
ADD CONTENT
Topic
Content
Source link
Name
9+5 =