Showing portion of an iframe
POC
by Ronny
HTML
<div id="outerdiv">
<iframe id="innerIframe" src="http://www.trygames.com/webgames/?aff=dfg1_com&curr_selected=USD&lang=EN&webgame=108902
"></iframe>
</div>
CSS
body {margin: 0; padding: 0;}
#outerdiv
{
width:502px;
height:375px;
overflow:hidden;
position:relative;
}
#innerIframe
{
position:absolute;
top:-328px;
left:-551px;
width:1280px;
height:1200px;
}