Click here to Skip to main content
15,885,546 members
Please Sign up or sign in to vote.
2.00/5 (1 vote)
See more:
I am a beginner so pljjj tell me how to implement the vertical scroll bar in a project form...
help me with the coding and procedure...
Posted
Updated 4-Jun-12 18:04pm
v2
Comments
Sergey Alexandrovich Kryukov 5-Jun-12 0:30am    
Why? The answer depends on your purpose. I suspect you don't need the bar itself but some container showing the bar.
--SA

This article[^] should help you out.
In addition, have a look at the Scrollbar class[^].
 
Share this answer
 
v2
Comments
VJ Reddy 4-Jun-12 23:18pm    
Good reference. 5!
Abhinav S 4-Jun-12 23:23pm    
Thank you.
Sergey Alexandrovich Kryukov 5-Jun-12 0:29am    
This is the answer, my 5, but I don't understand what's the buzz about. Will a horizontal bar be a separate question?
--SA
Abhinav S 5-Jun-12 1:41am    
Thanks SA.
try like this
CSS
body
{
    overflow:scroll;
    background: #CCCCCC;
    font-size: .80em;
    font-family: "Helvetica Neue" , "Lucida Grande" , "Segoe UI" , Arial, Helvetica, Verdana, sans-serif;
    margin: 20px;
    padding: 0px;
    color: #000000;

}


and set this css class to your body tag
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900