I\'ve haven\'t done css in several month so I might miss something simple, but whatever the solution is, I couldn\'t figure it out. So here is the problem.
Here is simpl
Overflow hidden can actually be ignored if the following rules are observed:
HTML
(Overflowing the wrapper)
CSS
.outer-wrapper {
position: relative;
}
.wrapper {
overflow: hidden;
}
.overflowed {
position: absolute;
}
FIDDLE http://jsfiddle.net/vLsmmrz6/