JSFiddle - React, Tailwind, and code Playground
by JamesKyle
HTML
<textarea></textarea>
CSS
body {
display: block;
position: relative;
width: 10000px;
height: 10000px;
}
::-webkit-scrollbar {
width: 10px; height: 10px;
}
::-webkit-scrollbar-button {
background: purple;
}
::-webkit-scrollbar-track {
background: blue;
}
::-webkit-scrollbar-track-piece:start {
background: red;
}
::-webkit-scrollbar-thumb {
background: green;
}
::-webkit-scrollbar-corner {
background: yellow;
}
::-webkit-resizer {
border-bottom: 4px double rgba(0, 0, 0, .5);
border-right: 4px double rgba(0, 0, 0, .5);
}
textarea {
white-space: nowrap
}