2 different colors

liunx

Guest
How would you make two different scrollbars on the same page using textareas? I'm using a transparent textarea and I want it to have different colors than the one on my actual page! Any help would be appreciated!<!--content-->i s'pose you could use classes somehow. <br />
<br />
maybe try:<br />
<br />
.textarea {<br />
scrollbar-3d-light-color: #0ff;<br />
scrollbar-arrow-color: #bff;<br />
scrollbar-base-color: #069; <br />
scrollbar-track-color: #aaf;<br />
scrollbar-face-color: #aaf;<br />
scrollbar-highlight-color: #006;<br />
scrollbar-shadow-color: #000;<br />
scrollbar-dark-shadow-color: #000;<br />
}<br />
<br />
then put the class on your div or text area or whatever (<div class="textarea">). i have no idea if it will work though.<!--content-->
 
Back
Top