Is there any way to hide the overflow of a fixed div with a container? I thought fixed inside fixed would do it, but it seems it\'s not the case. The only w
Unfortunately it seems to be impossible to nest a fixed element within another element (fixed or not) and expect the outer element to wrap it and hide any overflow.
The only thing I can think of is setting the inner div to position:absolute instead of fixed. Here is an example based on your jsfiddle: jsfiddle.net/pjFa6/15 .