Is it possible to make content overflow outside of a HTML frame
element?
For example can I have a video that sits inside 1 frame
extend beyond the extents of the frame?
I've tried making the frame
have an overflow
value of visible
. And giving the video (iframe
) element a x
value of -100px
but the video never moves further left than 0px
.
Any ideas how I could make the video overflow into the left frame using HTML, CSS or Javascript.