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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<style type="text/css">
html, body {
margin: 0;
padding: 0;
height: 100%;
}
/* --- BLOC CONTENEUR GLOBAL --- */
#container {
position: relative;
width: 80%;
margin: 0 auto;
min-height: 99%;
background-color : yellow;
border: 1px solid gray;
}
#entete {
position: relative;
margin-top: 0;
height : 60px;
background-color : #93522F;
border-bottom: 1px solid gray;
}
#centre {
position: relative;
background-color : blue !important;
min-height: 100%;
}
#menu {
position: relative;
float: left;
background-color : blue !important;
width : 20%;
}
#page {
position: relative;
float: right;
background-color : green !important;
width : 80%;
}
#pied {
position: relative;
clear : both;
width: 100%;
height: 28px;
border-top: 1px solid gray;
background-color:#C0C0C6;
text-align:center;
}
</style>
</head>
<body>
<center>
<div id="container">
<div id="entete">ENTETE</div>
<div id="centre">
<div id="menu">menu</div>
<div id="page">
PAGE
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
</div>
</div>
<div id="pied">pied de page</div>
</div>
</center>
</body>
</html> |