1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
<html lang=fr xml:lang="fr" xmlns="http://www.w3.org/1999/xhtml"><HEAD><TITLE>test</TITLE>
<META http-equiv=Content-Type content="application/xhtml+xml; charset=iso-8859-1">
<style>
#summary {
background-color: red;
width: 20%;
float: left;
}
#content {
background-color: yellow;
width: 80%;
overflow: auto;
}
table {
background-color: green;
width: 98%;
margin: 1%;
}
</style>
</HEAD>
<body>
<div id="summary">
<table>
<tr><td>tableau</td></tr>
</table>
<br /><br /><br /><br /><br /><br />
</div>
<div id="content">
<br /><br /><br /><br /><br /><br /><br />
</div>
</body></html> |