Thread: Scrollbar!!!!!!
View Single Post
  #9 (permalink)  
Old 07-22-04, 05:01 PM
MrKafaaski's Avatar
MrKafaaski MrKafaaski is offline
Newbie Coder
 
Join Date: Jul 2004
Location: Hurum, Norway
Posts: 34
Thanks: 0
Thanked 0 Times in 0 Posts
Why not use css?

CSS-file:
Code:
#scrollbar {
overflow: auto;
background-color: #fff;
color: #000;
}
HTML-file:
Code:
<div id="scrollbar">Lotsa text</div>
Reply With Quote