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
|
<html>
<head>
<style type="text/css">
#page {
height : auto ;
width : 100% ;
}
#gd {
height : auto;
width : 100% ;
}
.gauche {
float : left ;
background-color : #FF0000 ;
width : 50% ;
height : auto;
margin-left : -1px ;
}
.droite {
background-color : #999999 ;
width : 50% ;
float : right ;
height : auto ;
}
.clear {
clear : both;
}
</style>
</head>
<body>
<div id="page">
<div id="gd">
<div class="gauche">GAUCHE</div>
<div class="droite">DROITE <br> DROITE</div>
</div>
<div class="clear"> </div>
</div>
</body>
</html> |
Partager