Hi,
I am facing an issue with IE11 where I have a div which has Vertical scroll bar. In some scenarios when the div width is 0px, the vertical scroll is still shown in the page which looks weird.
I tested this with a simple html and css.. and saw the same behavior. With width 50%, we see a vertical scroll.. and with width 0px, the
content is hidden, but the grayed out Vertical scroll is still seen.
HTML:
<div id='Parent'><div id='Child' >
</div>
</div>
CSS
#Parent {width:0px; /* altered */
/* width:50%;*/
background:red;
height:400px;
}
#Child {
background:green;
width:98%;
height:600px;
}