Code For Adjustable iFrame
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Your Page Title</title>
<style type="text/css">
body {
background-color: #13367c;
margin:0;
height:100%;
}
html, body, #container, iframe {
margin:0;
padding:0;
height:100%;
}
iframe {
display:block;
width:100%;
border:none;
overflow:auto;
margin-top:50px;
}
</style>
</head>
<body>
<div id="container">
<iframe src="http://www.yahoo.com" frameborder="0" scrolling="yes" height="100%" width="100%"></iframe>
</div>
</body>
</html>
Back To Module 4