vote up 1 vote down star

I have a element on my form that looks like this:

<div style="overflow-y:auto;overflow-x:hidden;height:100%;width:100%">

In IE7 when the page first renders, there are no scrollbars. However, if I resize the page (even just 1 pixel) the scroll bars appear properly.

Is there something I can do so that the scrollbars show properly when the page first displays?

flag

63% accept rate

2 Answers

vote up 2 vote down

Set overflow-y to "scroll" if you always want a scrollbar.

link|flag
I could do that, but I only want the scrollbar to show if it's necessary. – DaveK Aug 13 at 17:22
1  
is there overflowing content when the page is first rendered? – happytime harry Aug 13 at 17:23
Yes, the page that loads initially is larger than the container and should cause an overflow. – DaveK Aug 13 at 17:25
is content added to the div after it would have been parsed (the inline css interpreted)? – happytime harry Aug 13 at 17:30
vote up 0 vote down

you should add margin-right: 20px to your style, so the scrollbar will have enoguh place to be displayed.

Snus

link|flag

Your Answer

Get an OpenID
or

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