I have an iframe surrounded by div element and I am simply trying to position it always in the center. here is my jsfiddle effort : jsfiddle
and tr
First remove position:absolute of div#iframe-wrapper iframe, Remove position:fixed and all other css from div#iframe-wrapper
position:absolute
div#iframe-wrapper iframe
position:fixed
div#iframe-wrapper
Then apply this css,
div#iframe-wrapper { width: 200px; height: 400px; margin: 0 auto; }
FIDDLE DEMO