vote up 0 vote down star
1

The spec says that a horizontal scrollbar is supposed to be always shown if overflow-x: scroll is set.

On my website I often post code in a <pre>-Block. As this has no predefined width, but the surrounding div does have a maximum (defined as percentage), it seems that I can not figure out how to achieve the following: In case a code block is not too wide, hide the horizontal scrollbar. If it exceeds the width, show a scrollbar. Any hints? I think I have tried most of the combinations of overflow-x and -y, but none seem to do what I want.

flag

80% accept rate
Uh, you’re already using overflow: auto on your site and it works. Why the question? – Konrad Rudolph Nov 4 at 17:34
Ok, maybe it is a problem with my browser: But both on FF 3.0 and FF 3.5 I see this. – data Nov 4 at 17:37
No one else is seeing the issue. Maybe you're logged in and as such get a different set of style sheets? – Steve Perks Nov 4 at 21:33
Sorry. It looked too crappy. So I removed the option. Thanks for your effort. – data Nov 5 at 1:03

1 Answer

vote up 2 vote down check

Use:

overflow-x: auto;

auto tells the browser to only show a scrollbar if the content exceeds the width of the box.

link|flag
Sorry, but this is incorrect, at least with FF3.5. Please look at my website to see that this does not work (for some reason). – data Nov 4 at 17:37
Your website works for me, and I am using Firefox 3.5 so the problem must be elsewhere. Furthermore, I am certain that this is correct. Have you tried re-installing your browser? – Konrad Rudolph Nov 4 at 18:40
Did you really check on my website? It works perfectly as long as there is no border-bottom defined. If I show a bottom border for the pre element, it gives me the scroll bar. Usually, your tip would be correct – data Nov 4 at 18:45

Your Answer

Get an OpenID
or

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