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 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 :: linear-gradient 
Css :: css zebra 
Css :: css get screen height 
Css :: use css to replace icon with text when hover 
Css :: remove effect off animation css 
Css :: css selector attribute contain 
Css :: template html css bootstrap cdn 
Css :: materialize css for react 
Css :: button type submit css selector 
Css :: media screen smartphone 
Css :: css profile picture round 
Css :: remove the dotted border on links 
Css :: change png color css 
Css :: css border radius 
Css :: how to create multicolor text in css 
Css :: css selector color 
Css :: box-shadow in css 
Css :: changing bakcgound color like animation using tailwind 
Css :: how to center a position fixed element horizontally 
Css :: multiple box shadows css 
Css :: css font family 
Css :: auto suggestion in jupyter notebook 
Css :: how to horizontally center header at the top of page with flexbox css 
Css :: how to make a game engine 
Css :: background blur css 
Css :: closing modal on iframe movies still running 
Css :: css if element is empty 
Css :: css custom properties 
Css :: what is descendant selector 
Css :: remove auto focus selected background color 
ADD CONTENT
Topic
Content
Source link
Name
2+8 =