Hi Is this a bug? I have a simple div with "style=overflow:auto;" PHP (Joomla) writes data into this div. Now, this dynamic data is larger then the height of the div. In all browsers I get what I want: a div with a vertical scrollbar. In IE however, I get the same result as like I used "overflow:hidden" so no srollbar is visible. BUT ! If you 1. resize the window 2. select the div content and move the cursor down until the bottom is reached (so scrolling the page by selecting the content) Suddenly... the scrollbars are rendered... Also if you use the mouse-scroll-button, it also scrolls the div, but no scrollbar is displayed... Please, let me know. Is this a known bug and how can I work around? Or what do I do wrong? You can see the live code here: http://www.kasteelhoeve-outrijve.be/temp/index.php?option=com_content&view=article&id=4&Itemid=8 Thanks in advance for any help
Use overflow-x:hidden; overflow-y:scroll; instead of overflow:auto; if you make sure you content length is greater than the height of DIV, 550px in this case. Just a makeshift for IE7. Also I find that you wrap a table inside this DIV, I guess it'll be better if you use DIVs instead.