Show scrollbar while resizing the window
I want to开发者_运维问答 show windows scrollbar when user resizes the window less than a specified width. For that i used min-width but that doesnt work with IE6. Is there any way i can do that using javascript or jquery
try this if it will solve the problem just replace height and width in the css
div.scroll
{
background-color:#00FFFF;
width:100px;
height:100px;
overflow:scroll;
}
精彩评论