Estoy intentado cambiar el estilo del boton, quiero que salga un triangulo hecho con css pero a la hora de pintarlo me pinta dos triangulos.
Si que me hace la funcionalidad de mostrar solo un boton en los extremos pero el estilo que le aplico no es el que yo deseo
::-webkit-scrollbar-button {
display: none;
}
::-webkit-scrollbar-button:single-button:vertical:decrement {
display: block;
height: 20px;
background-color: transparent;
border-style: solid;
border-width: 0 20px 20px 20px;
border-color: transparent transparent #007BFF transparent;
}
::-webkit-scrollbar-button:single-button:vertical:increment {
display: block;
height: 20px;
background-color: transparent;
border-style: solid;
border-width: 20px 20px 0 20px;
border-color: #007BFF transparent transparent transparent;
}
New contributor
Daniel landete martinez is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.