Today, my designer handed me a fixed height design for a web page and was adamant that a text area have a vertical scroll bar. I hate scroll embedded scroll bars but I sought out a solution and found a rather elegant one.
.containerContentScroll
{
overflow: auto;
height: 500px;
scrollbar-base-color: #963;
}
It is really that easy - set a height for your container (textarea, div, etc...) and set the overflow to auto. You can also color the scrollbars (not in FireFox).
Currently rated 5.0 by 1 people
- Currently 5/5 Stars.
- 1
- 2
- 3
- 4
- 5