“Largura da barra de rolagem CSS” Respostas de código

Definir CSS de largura da barra de rolagem

::-webkit-scrollbar {
    width: 2em;
    height: 2em
}
::-webkit-scrollbar-button {
    background: #ccc
}
::-webkit-scrollbar-track-piece {
    background: #888
}
::-webkit-scrollbar-thumb {
    background: #eee
}​
Fine Flatworm

Largura da barra de rolagem CSS

/* The syntax, with all the available styling */
(selected-element)::-webkit-scrollbar {
  width: 16px;
  background: transparent;
  display: none;
}
(selected-element)::-webkit-scrollbar-track {
  background: whitesmoke;
  border-radius: 3px;
}
(selected-element)::-webkit-scrollbar-thumb {
  background: tomato;
  border-radius: 10px;
}

/* A modern way of doing this */
selected-element {
  scrollbar-width: thin; /* 'thin' or any usual number measurements like '5px' */
  scrollbar-color: <thumb-color> <track-color>; /* Use normal color system i.e rgb or hex or hsl */
}
Code Rabbi

Respostas semelhantes a “Largura da barra de rolagem CSS”

Perguntas semelhantes a “Largura da barra de rolagem CSS”

Mais respostas relacionadas para “Largura da barra de rolagem CSS” em CSS

Procure respostas de código populares por idioma

Procurar outros idiomas de código