типа такого?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="ru" xml:lang="ru">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<style>
body{
height:200px;
}
.box{
width:100%;
height:100%;
}
.box iframe:first-child{
box-sizing:border-box;
-moz-box-sizing:border-box;
padding-bottom:50px;
height:100%;
}
.box iframe+iframe{
height:50px;
margin-top:-50px;
}
iframe{
display:block;
border:0;
}
</style>
</head>
<body>
<div class="box">
<iframe src="http://javascript.ru/"></iframe>
<iframe src="http://javascript.ru/"></iframe>
</div>
</body>
</html>