How to do scrollbar outside textarea?

一世执手 提交于 2020-01-06 19:26:18

问题


Can anybody have to do scrollbar outside <textarea> ?

I found something like this http://jsfiddle.net/jlmyers42/8tptqt19/ but it doesnt work for teaxtarea.

The best will be using only css and html.

Thanks in advance :)


回答1:


If you mean, have a scroll bar outside of that particular element you could encapsulate it within a div like so.

<div style="overflow-y: scroll; overflow-x: hidden; height: 100px">
   <textarea style="overflow-y:auto;" placeholder="Enter Notes here (optional)"></textarea>
</div> 

http://jsfiddle.net/ga0e66oz/
The scrollbar will appear when you need to scroll. Give it a try.



来源:https://stackoverflow.com/questions/33102545/how-to-do-scrollbar-outside-textarea

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!