Hi all,
in FF3 (3.0.14) I'm seeing an issue where the vertical scrollbar is hidden on an element if its height is less than 32px. In my (much simplified) example below, the scrollbar doesn't appear on "shouldScroll" - even though its child is larger than it - until I increase its height. Does anyone know if this is a known issue with particular versions of FF, and/or if any workarounds exist?
Cheers, Alasdair
P.S. sorry about the formatting, if someone could tell me how best to embed html in my post it'd be much appreciated
<html>
<head>
</head>
<body>
<div id="shouldScroll" style="height: 20px; overflow: auto; background-color: red">
<div id="child" class="popupText" style="width: 100px; height: 100px;">Run Test</div>
</div>
</body>
</html>