0

I wonder if you can change the colour of the horizontal scrolling tab in iframe? Please let me know if you think that such effect can be achieved in all browsers?

Gabriel
  • 63
  • 1
  • 8

1 Answers1

0

As hayk.mart said in the link that DiegoS sent, you use the ::-webkit-scrollbar selector like so:

::-webkit-scrollbar              { /* 1 */ }
::-webkit-scrollbar-button       { /* 2 */ }
::-webkit-scrollbar-track        { /* 3 */ }
::-webkit-scrollbar-track-piece  { /* 4 */ }
::-webkit-scrollbar-thumb        { /* 5 */ }
::-webkit-scrollbar-corner       { /* 6 */ }
::-webkit-resizer                { /* 7 */ }
Community
  • 1
  • 1