How do I style the scrollbar of a textarea

2019-07-08 07:08发布

I've got a textarea in a contact form which is styled with css, it looks great until i write more than the area can fit, when I do that a scrollbar appears and this scrollbar looks horrible with my dark styling (it's black with white text). So how would I go about to style this? I've googled some but haven't found any good answer just found all these IE-only colour changes.

4条回答
相关推荐>>
2楼-- · 2019-07-08 07:29

Check out this jQuery plugin: http://www.kelvinluck.com/assets/jquery/jScrollPane/jScrollPane.html

I learned about it from from this site, where you can see it in action on their "TribWire" sidebar: http://www.texastribune.org/

查看更多
欢心
3楼-- · 2019-07-08 07:32

You can use this script http://studio.radube.com/html-textarea-custom-scrollbar and get a personalized textarea scrollbar.

查看更多
神经病院院长
4楼-- · 2019-07-08 07:34

@handsofaten: jScrollPane doesn't work on textarea elements because it dynamically adds div elements to the contents of the element you apply it to. You cannot add div elements to a textarea.

It would be possible by adding a wrapper element to the textarea and applying the scrollbar to that parent. I wouldn't recommend that however, because when you add text to a textarea, their content grow, not the textarea itself. You'd have to apply a hack to the textarea so that it grows with its content. Which probably results in an unstable mess.

So I'd let the idea go.

By the way: Webkit (Chrome, Safari) also supports a proprietary CSS way of styling scrollbars: http://webkit.org/blog/363/styling-scrollbars/

查看更多
我欲成王,谁敢阻挡
5楼-- · 2019-07-08 07:51

You can also check out http://www.css3.com. Click on SCROLLBAR... in the list. If it will work or not, I don't know. CSS3 isn't that well supported in browsers yet, but will hopefully be in the future.

查看更多
登录 后发表回答