Even After setting the frameborder attribute in the iframe to 0 there is still some white space present around the iframe border (unlike the original url/link page). Is ther
By adding this CSS we can make iframe in full screen
body,html { background-color:#DDEEDD; padding:0px; margin:0px; height:100%; width:100%; overflow:hidden; } iframe { margin:0; padding:0; border:none; overflow:hidden; background-color:#DDEEDD; }