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 101 102 103 104 105 106 107 108 109 110 111 112
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Document sans titre</title>
<style type="text/css">
html {
font-size: 100%;
height: 100%;
}
body {
margin: 0;
padding: 1em;
font-size: .8em;
line-height: 1.4;
height: 100%;
}
a img{
border: none ;
}
div#conteneur{
background-color: white;
margin-left:auto;
margin-right:auto;
width:1000px;
}
div#banniere{
background-color: white;
/* width:1000px; */
height: 90px;
overflow:hidden;
background-repeat:no-repeat;
border: 1px solid #000;
}
div#connexion{
/* margin-left:0px; */
background:red;
text-align:right;
width: 100px;
float:right;
}
div#container {
overflow:hidden;
}
div#contenu
{
padding:40px;
background:gray
}
div#pied
{
height:50px;
background-color: red;
}
div#menu
{
float:left;
width:150px;
min-height:750px;
background-color: #3fac46;
}
</style>
<!--[if lte IE 6]>
<style type="text/css">
div#menu
{
height:750px;
}
</style>
<![endif]-->
</head>
<body>
<div id="conteneur">
<div id="banniere">
<div id="connexion">
btn connexion
</div>
</div>
<div id="menu">
menu
</div>
<div id="container">
<div id="contenu">
contenu
</div>
<div id="pied">
pied de page
</div>
</div>
</div>
</body>
</html> |