Wednesday, 20 June 2012

Make Iframe fit to screen in width & height.


<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>Page Title</title>

    <style type="text/css" media="screen">

        body,
        html {
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        * {
            padding: 0;
            margin: 0;
        }

        iframe {
            width: 100%;
            height: 100%;
            overflow: hidden;
            border: none;
        }
    </style>

</head>
<body>
asdfasd
    <iframe src="test.html" scrolling="yes" border=1></iframe>
asdsdf
</body>
</html>

No comments: