vote up 1 vote down star

Hello,

I have an iframe on www.mydomain.com that points to support.mydomain.com (which is a CNAME to a foreign domain). I automatically resize the height of my iframe so that the frame will not need any scrollbars to display the contained webpage. On Firefox and IE this works great, there is no scrollbar since I use <iframe ... scrolling="no"></iframe>. However, on webkit browsers (Safari and Chrome), the vertical scrollbar persists even when there is sufficient room for the page without the scrollbar (the scrollbar is grayed out). How do I hide the scrollbar for webkit browsers?

Thanks,

Ken

flag

20% accept rate

3 Answers

vote up 0 vote down

Try this...

iframe { overflow:hidden; }
link|flag
Been trying it from the start. Not working. Thanks though. – BrainCore Nov 9 at 22:04
vote up 0 vote down

I'm assuming you've tried this, but have you set scrolling to no on the iframe?

<iframe scrolling="no">
link|flag
yup. I didn't escape that flag in my post, unfortunately, so it didn't display. – BrainCore Nov 9 at 19:46
vote up -1 vote down

Can you set the overflow-y CSS property for the IFRAME to either visible or hidden?

link|flag
Setting the overflow-y css property to hidden directly for the IFRAME, or for the html/body tags of the contained web page seems to have no effect. Could I be overriding this property somehow? – BrainCore Nov 7 at 19:51
-1 overflow-y is not a standard CSS property; it is IE only. – Josh Stodola Nov 9 at 19:51
Thanks for letting me know Josh! – JasonWyatt Nov 9 at 21:07

Your Answer

Get an OpenID
or

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