<style>
/*외곽 박스의 크기를 고정하고 박스크기 밖의 내용은 안보이게 한다. */
#panel {width:400px;height:400px;overflow:hidden;border:1px solid #7C7C7C;}
/*iframe의 위치를 위로 올리고 왼쪽으로 옮겨서 중앙이 보이게 한다.*/
#ifrm {position:relative;top:-300px;left:-200px;}
</style>
</head>
<body>
<form name='frm'>
<center>
<div id='panel'>
<iframe id='ifrm' width='1024px' height='768px' src='http://www.daum.net'></iframe>
</div>
</center>
</form>
</body>
</html>