“Sembunyikan Scrollbar tapi masih gulir” Kode Jawaban

Sembunyikan CSS Scrollbar

/* 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

Hapus 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

Sembunyikan Scrollbar tapi masih gulir

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

cara menyembunyikan overflow scrollbar

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;
}
Graceful Grouse

CSS menyembunyikan scrollbar

// Sass Mixing
@mixin hideScrollbar {
  &::-webkit-scrollbar {
    width: 0 !important
  }
  -ms-overflow-style: none;
  scrollbar-width: none;
}
Gentle Guanaco

Sembunyikan bilah gulir, tapi sambil tetap bisa menggulir

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

Jawaban yang mirip dengan “Sembunyikan Scrollbar tapi masih gulir”

Pertanyaan yang mirip dengan “Sembunyikan Scrollbar tapi masih gulir”

Lebih banyak jawaban terkait untuk “Sembunyikan Scrollbar tapi masih gulir” di CSS

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya