简体   繁体   中英

vertical scroll bar in IE6

I am facing problem on div tag with vertical scroll. When I minimize the window the scroll bar does not appear in a small size window. I am using Window Server 2003 sp2 and IE6 as client.

Below is my div tag..

<div style="border: 1 none Black; vertical-align: top;overflow:auto; height:470px; width:980px;"
class="content">

CSS:

.content
{
font-size: 11px;
background: url(../Images/bg-content.jpg) repeat-x top center;
padding: 20px;
height: 100%;
}

The problem in your code is the property overflow:auto; Ie6 had issues with it . You can add the following two properties in your css something like :

_overflow:hidden;
_overflow-y: visible;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM