Click here to Skip to main content
15,889,116 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi all,
I am using overflow-y:scroll,height:150px,width:500px in css and i assign that css in a table...
The scrollbar works well in mozilla and other browser....but not in IE6..
Its occupy the space for scrollbar but it not visible....


Can anyone give solution for this issue...

Regards
vivek
Posted
Comments
ZurdoDev 27-Aug-12 11:20am    
It will likely be hard for anyone to help you with IE6 since not many people use it anymore. Try installing the developer tools, you had to download them for IE6 and you'll have to debug it.

1 solution

Internet Explorer is obsolete. Even Microsoft leave it! So upgrade your browser compatibility.

CSS
.scroll{
	height:70px;
	overflow-y:auto;
	background-color:#ccc;
}
.scroll p{
	position:relative;
	background-color:#fcf;
	width:100px;
}


Regards.
 
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