Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I try to apply overflow:hidden on a child-box that has position:fixed. This appears to not work due to the fixed position. Is there a fix?

http://jsfiddle.net/HFZ7V/

I read about a similar problem with position:absolute elements, but the fixes do not work for fixed elements.

share|improve this question
This is the intended behavior, as the element is being taken out of normal flow when using 'fixed' position. It becomes relative to the document window and no longer to the element it's within. The only real fix would be to make the parent element fixed instead... – Jordan Rynard May 15 '11 at 20:37
OK, not possible then. Thanks for your help! – joh-3 May 15 '11 at 20:46
@JordanRynard - I've tried applying it to the parent element, still doesn't seem to be working... – Derek Adair Sep 2 '12 at 16:07

1 Answer

up vote -1 down vote accepted

I've updated your jsfiddle, with a guess of what you're trying to achieve. Let us know if it looks like what you're after.

http://jsfiddle.net/HFZ7V/1/

share|improve this answer
Thanks, but it is a requirement that the child-element has position:fixed. I guess this is not possible then, seeing the other comments... – joh-3 May 15 '11 at 20:45

Your Answer

 
discard

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