How to creat a scrollbar??

Go4Expert Member
19Sep2007,21:50   #1
Talks_44's Avatar
i m about designing my personal page and i'd like to know if there's anyway i can create a scrollbar between a <div> tag using CSS??

is there anyway i can use only arrows?? (transparent scroll only arrows that shows)

thank you
Team Leader
20Sep2007,05:15   #2
jwshepherd's Avatar
not sure about transparent scrollbar but you can make it the same color as the background or create a flash one.
Go4Expert Founder
20Sep2007,09:32   #3
shabbir's Avatar
If you specify the div height and if your content in the div is of more height than the specified height there will be a scrollbar automatically.
Go4Expert Member
21Sep2007,20:32   #4
Talks_44's Avatar
Quote:
Originally Posted by jwshepherd
not sure about transparent scrollbar but you can make it the same color as the background or create a flash one.
I am interested in that kind of scroolbar, like in winamp, when you have the chance to chage the backgraound in transparent.!!!!!!!!!!!!
Go4Expert Member
21Sep2007,20:33   #5
Talks_44's Avatar
Quote:
Originally Posted by shabbir
If you specify the div height and if your content in the div is of more height than the specified height there will be a scrollbar automatically.
So it's possible..thx..!!
Go4Expert Founder
21Sep2007,20:51   #6
shabbir's Avatar
Quote:
Originally Posted by Talks_44
So it's possible..thx..!!
Yes very much. Check out some of the articles where you have code snippets of more than 30-35 lines like in Form validation with PHP & JavaScript
Banned
12Jul2008,16:06   #7
Magena's Avatar
You can use CSS to create a scrollable box. Consider this source code:

<div style="width: 190px; height: 190px; overflow: auto; padding: 5px">
content in here
</div>