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
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>[...]</title>
<style type="text/css">
html, body {
margin : 0;
paddding : 0;
height : 1000px;
}
#central {
margin-left : 150px;
margin-right : 150px;
height : 100%;
border : 1px solid #e0e0e0;
background-color : #f0f0f0;
min-width : 600px;
}
#menu {
position : fixed;
left : 0px;
top : 50%;
bottom : 50%;
margin-top : -75px;
height : 150px;
width : 150px;
border : 1px solid #8080fe;
background-color : #e0e0ff;
}
</style>
</head>
<body>
<div id="central"></div>
<div id="menu"></div>
</body>
</html> |
Partager