Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This is probably a variation on something that has been solved dozens of times but CSS really makes me feel like a fool.

I am trying to build a widget that can be positioned and sized in a variety of ways. It's a pretty simple layout - fixed-height header, fixed-height footer, and a body that takes up the remaining space. The overall width and height varies. The content of the body needs to scroll. I have the overall container, header, footer, and body sizing ok.

But what I want is for the body to scroll when it needs to WITHOUT shrinking content to the left when the scrollbar appears. That is, I want the body to be as wide as it can MINUS the scrollbar that would be there iF it needed to scroll, so that when it DOES need to scroll there is no shrink. In effect, I want this:

| - - - unknown width - - -|
+--------------------------+
| content                |*|
| might                  |*|
| scroll                 |*|
+--------------------------+

I want the content that might scroll to be as wide as it can MINUS the potential scrollbar width (|*| region).

What I have now is something like this:

<div id="content" style="position: absolute; overflow-y: auto; width: 100%">
    <div id="scrollContent" style="???">
    </div>
</div>

I have tried margins, padding, even %-widths for the inner-most div and all 'do the shift' thing. I also need this to work in FF3, IE7/8 and (fantasy?) IE6.

share|improve this question
1  
Does anyone have any idea how to implement this? Seems like a common problem. – Neil Dec 9 '10 at 18:43

3 Answers

up vote 7 down vote accepted

Use overflow: scroll instead of overflow: auto - that'll force a scrollbar to always appear.

share|improve this answer
Well that certainly prevents the shift/shrink but I was really hoping to not have to do that. – n8wrl Aug 22 '10 at 15:23
2  
@n8wrl: That's really the best you can do with CSS alone. – casablanca Aug 22 '10 at 16:17
Thank you for taking the time – n8wrl Aug 23 '10 at 11:19
cheeky but just what i need right now :D – Stoff81 Aug 4 '11 at 6:54

Add another wrapper inside the element that will have the overflow:auto style and set it to about 18px narrower. The scrollbar should appear in that 18px gap.

share|improve this answer
3  
+1, but since the OP doesn't know the width of the container, he would need JavaScript to implement this. – casablanca Aug 22 '10 at 16:25
ahh, good catch! – lnrbob Aug 22 '10 at 16:57
With FF & IE9 (coming to a browser near you!) do something like (FF) width: -moz-calc(100% - 16px); – Stephen Jun 10 '11 at 12:06
@Stephen Except where the scrollbar is 27x (or whatever). Hoorah. – user2246674 May 16 at 5:45

Why not displaying always the scrollbars, even when there is no need to scroll?

You can achieve this by setting overflow:scroll; to the container.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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