“Ukryj pasek Scroll” Kod odpowiedzi

Ukryj 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 */
}
Adarsh077

Usuń CSS Scrollbar

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

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

Ukryj poziome przewijanie CSS

.x-scroll-disabled {
	overflow-x: hidden;
}
Duco Defiant Dogfish

Ukryj Scrollbar CSS

/* hide scrollbar but allow scrolling */
element {
    -ms-overflow-style: none; /* for Internet Explorer, Edge */
    scrollbar-width: none; /* for Firefox */
    overflow-y: scroll; 
}

element::-webkit-scrollbar {
    display: none; /* for Chrome, Safari, and Opera */
}
Combative Constrictor

Ukryj Scrollbar CSS

/* A very quick an applicable solution is to use this piece of code: */
html {
overflow: scroll;
overflow-x: hidden;
}
::-webkit-scrollbar {
width: 0px; /* remove scrollbar space /
background: transparent; / optional: just make scrollbar invisible /
}
/ optional: show position indicator in red */
::-webkit-scrollbar-thumb {
background: #FF0000;
}
Mehedi Islam Ripon

Ukryj pasek Scroll

.your-overflow-scroll-class::-webkit-scrollbar {
  ...
  width: 0.5rem; //only hide the vertical scrollbar
  height: 0px; //only hide the horizontal scrollbar
}
Inquisitive Iguana

Odpowiedzi podobne do “Ukryj pasek Scroll”

Pytania podobne do “Ukryj pasek Scroll”

Więcej pokrewnych odpowiedzi na “Ukryj pasek Scroll” w CSS

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu