Click here to Skip to main content
15,913,854 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How is it possible to add a scrollbar in div.I have tried overflow:auto .this works only in mozila.I need a code that work in all browsers? Is there any code that works in all browser ..Pls help meeee
Posted

1 solution

overflow:auto works in all browsers. First you need to understand what it means. Auto => whenever there is a need of scroll it will appear or else not.

If you want to show scroll all the time, put this in your CSS stylesheet/Style element:
overflow:scroll;

if specific x or y then:
overflow-x:scroll;<br />
overlfow-y:scroll;
 
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