I am using iframes in my page, and have stumbled across a weird issue. I set the iframe css like so
iframe { margin: none; padding: none; background:
Maybe that whitespace is actually the outside margin of the document loaded in the . Try styling the loaded document (CSS styling the source page) with:
html, body { border: 0px; margin: 0px; padding: 0px; }
quoted from stackoverflow.com Here