CSS hover scrollbar cursor in textarea

I found a simple solution, which works fine for me.

Use this:

textarea {
    cursor: auto;
}

Currently cursor does not seem to be supported for any of the scrollbar elements. This is an expected behaviour for such unfinished properties.

This blog post on WebKit mentions several possible customisations, but the cursor is not stated. Other properties such as visibility: hidden are not supported either.

One workaround may be to add a div near your textarea, wrap these two in another div, set the height for the parent div instead, and style the internal div to stay under the scrollbar and set the cursor on it.