vote up 0 vote down star

I've got a very simple test case:

<html>
  <body>
    <div style="border:2px solid black; overflow: auto;">
      x
    </div>
  </body>
</html>

When I render it, I get a horizontal scrollbar:

http://imgur.com/TDhnbl.gif

I had been using FF 3.0.3 for Linux, and thought it might be a browser bug, so I upgraded to FF 3.5b4 (the latest release candidate). Still happens.

Is this supposed to happen? Should I file a bug report? Does anyone know of a workaround (edit: one that allows me to continue using overflow:auto)?

flag

That's odd I don't get a horizontal scroll bar in FF 3.0 or IE7 in windows vista. – p5ycho_p3nguin Jun 17 at 18:39

5 Answers

vote up 3 vote down check

There shouldn't be scroll bars for overflow:auto unless the content is actually going beyond the edges of the containing element. This is a bug in Linux versions of Firefox. See the following bug report.

link|flag
vote up 5 vote down

its your overflow style. change to overflow hidden to remove the scrollbars.

Josh

link|flag
Chris Coyier has a fantastic post about the css overflow property a little while ago: css-tricks.com/the-css-overflow-property. – patricksweeney Jun 17 at 18:40
I know that overflow is helping cause the problem, but I need overflow:auto on this. Is a horizontal scrollbar supposed to be an unavoidable side effect? – mike Jun 17 at 18:54
what your need for overflow and perhaps i can help suggest an alternative. – Josh Jun 17 at 18:57
vote up 1 vote down

I would file a bug report. It doesn't render that way on my version (for Windows).

link|flag
2  
Yeah, according to the CSS spec, auto should only show scroll bars when necessary. w3.org/TR/css3-box/#overflow1 – p5ycho_p3nguin Jun 17 at 18:41
Here's an existing bug report on the topic: bugzilla.mozilla.org/show_bug.cgi?id=397367/… – p5ycho_p3nguin Jun 17 at 18:50
PP: You should submit that as an answer -- I'll accept it! – mike Jun 17 at 18:55
Sure thing. :) – p5ycho_p3nguin Jun 17 at 19:17
vote up 0 vote down

I've just tested this on a windows and mac machine - both are fine, so it might be worth submitting a bug report to Mozilla

link|flag
vote up 0 vote down

Could it be that your div happens to have width:100% and therefore overflows when you add border?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.