F.eks.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"
http://www.w3.org/TR/html4/loose.dtd"><html>
<head>
<title>Tomt dokument</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
html,body{height:100%;margin:0px;border:0px;padding:0px;font-family:tahoma,verdana,arial,sans-serif;font-size:small;overflow:hidden;}
</style>
<script language="javascript" type="text/javascript">
function resizeFlex(){
var winHeight = window.innerHeight ? window.innerHeight : window.documentElement ? window.documentElement.offsetHeight : document.body.offsetHeight;
document.getElementById('flexRow').style.height = winHeight - 230 + 'px';
}
window.onload = resizeFlex;
window.onresize = resizeFlex;
</script>
</head>
<body>
<table style="width:100%;height:100%;border-collapse:collapse;">
<tr style="height:150px;">
<td style="border:0;padding:0;background-color:#ddd;">Banner og menu</td>
</tr>
<tr id="flexRow" style="height:500px;">
<td style="border:0;padding:0;background-color:#eee;">Indhold</td>
</tr>
<tr style="height:80px;">
<td style="border:0;padding:0;background-color:#ccc;">Footer</td>
</tr>
</body>
</html>