Code compatible :
	IE de 4 à 6
	Firefox 1.0
	Netscape 7.01
	Opéra 7.54
	
<?xml version="1.0"?>
<!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" xml:lang="fr" lang="fr">
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
		<title>Div taille écran</title>
		<style type="text/css">
		/* pour mettre tout le monde d'accord */
		*{ margin:0; padding:0; }
		
		@media screen{ /* Pour W3C */
		html{ height:100%; }
		html>body{ height:inherit; }
		html>body #page{ height:inherit; }
		}
		
		body{ overflow:auto; /* pour enlever la barre de scrool tjs visible sous IE */ }
		
		#page{
			background-color:#6699CC; /* pour visualiser la zone */
			height:100%; /* Pour IE (4 à 6) */
		}
		#page div{ padding:5em; }
		#page pre{
			padding:2em;
			height:400px;
			background-color:#fff;
			border:0.2em inset silver;
			overflow:auto;
		}
		</style>
	  
	</head>
	<body>
		<div id="page">
			<div>
				<pre>
					texte
				</pre>
			</div>
		</div>
	</body>
</html>