bir domain altında başka bir siteyi iframe ile göstermeye çalışırsanız iframe de width="100%" çalışır fakat height="100%" çalışmaz.
varsayılan olarak iframe yüksekliği 250 px görünür.sitenin tamamını gösteremezsiniz.çözüm;
<script type="text/javascript">
function resize_iframe()
{
var height=window.innerWidth;//Firefox
if (document.body.clientHeight)
{
height=document.body.clientHeight;//IE
}
document.getElementById("frame007").style.height = parseInt(height -
document.getElementById("frame007").offsetTop - 8) + "px";
}
window.onresize=resize_iframe;
</script>
KULLANIMI :)
<iframe id="frame007" width="100%" onload="resize_iframe()" src="http://www.siteniz.com/">
</iframe>
Tags: iframe, 100% height, iframe yükseklik
164dc8dd-194f-4880-88a6-33c1024ccc2a|1|5.0