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
| <html>
<head>
<style>
#corps{
width: 880px;
height: 200px;
margin-left: 10px;
background-color: red/*#3E3E3E*/;
}
#corps_left{
float: left;
width: 340px;
height: 200px;
background-color: #3D3D3D;
}
#corps_right {
float: right;
width: 510px;
height: 200px;
color: #CCCC99;
background-color: #3E3E3E;
font-family: helvetica;
}
</style>
</head>
<body>
<div id="corps">
<div id="corps_left"></div>
<div id="corps_right"></div>
</div id="corps">
</body>
</html> |