como cambiar el estilo de un overflow code example
Example 1: estilos de scroll css
.contenedor {
scrollbar-color: rgba(0, 0, 0, .5) rgba(0, 0, 0, 0);
scrollbar-width: thin;
}
Example 2: estilos de scroll css
.contenedor {
margin: 2rem auto;
border: 1px solid #aaa;
height: 300px;
width:90%;
max-width: 400px;
background: #f1f2f3;
overflow:auto;
box-sizing: border-box;
padding:0 1rem;
}
.contenedor::-webkit-scrollbar {
-webkit-appearance: none;
}
.contenedor::-webkit-scrollbar:vertical {
width:10px;
}
.contenedor::-webkit-scrollbar-button:increment,.contenedor::-webkit-scrollbar-button {
display: none;
}
.contenedor::-webkit-scrollbar:horizontal {
height: 10px;
}
.contenedor::-webkit-scrollbar-thumb {
background-color: #797979;
border-radius: 20px;
border: 2px solid #f1f2f3;
}
.contenedor::-webkit-scrollbar-track {
border-radius: 10px;
}