tags:

views:

76

answers:

1

overflow css working in Ie but not working with firefox

overflow:auto;

not working with firefox?

+2  A: 

Firefox has excellent support for the overflow property (at least as specified in CSS 2.1, which includes the auto value).

The problem likely lies with some other part of your code (probably something to do with how you are trying to size the element, or possibly that your Doctype (or lack thereof) is triggering Quirks Mode).

David Dorward