IFrame CSS 100% Resize

by jpwo759

HTML

<div class="container">
	<iframe src="http://jquery.com/" />
</div>

CSS

body{
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}
	.container
	{
		width: 75%;
		margin: 0 auto;
        height: 500px;
	}

iframe
{
    width: 100%;
    height: 100%;
}