Search
 
SCRIPT & CODE EXAMPLE
 

CSS

how to remove scrollbar in css

::-webkit-scrollbar {
    display: none;
}
Comment

remove scrollbar css

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

/* Hide scrollbar for IE and Edge */
.example {
  -ms-overflow-style: none;
}
Comment

css remove scrollbars

  overflow-y: hidden; /* Hide vertical scrollbar */
  overflow-x: hidden; /* Hide horizontal scrollbar */
Comment

remove scrollbars scroll

/*Hide scrollbar for Chrome, Safari and Opera*/
<(class/id) of element>::-webkit-scrollbar {
	display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
<(class/id) of element> {
	-ms-overflow-style: none; /* IE and Edge */
	scrollbar-width: none; /* Firefox */
}
Comment

PREVIOUS NEXT
Code Example
Css :: input number hide arrows 
Css :: center position absolute 
Css :: hover none in css 
Css :: ajouter une image dans un before after 
Css :: css circle 
Css :: css div fill whole page 
Css :: css select all except first 
Css :: center on page css 
Css :: meta refresh only once 
Css :: flip image css 
Css :: how to make animation stay on 100% 
Css :: iframe no scroll 
Css :: how to make gradient backgroud cover whole page in html 
Css :: css hide scroll 
Css :: how to stretch the background image in css 
Css :: border box reset 
Css :: center a class css 
Css :: JS make text not highlightable 
Css :: background overlay css 
Css :: grid center align css 
Css :: box shadow border only show left side 
Css :: border dot css 
Css :: image color css 
Css :: remove outline btn 
Css :: css not last of type 
Css :: css table borders 
Css :: background-color not showing grover pdf 
Css :: how to show ... after some long chars js html h1 
Css :: hegith specific css in media query 
Css :: enter in css 
ADD CONTENT
Topic
Content
Source link
Name
6+5 =