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
| <html>
<head>
</head>
<body>
<!-- Colonne de gauche -->
<div style="width:70%; height:300px;background:red;float:left;">
<!-- Article 1 -->
<div style="width:100%; height:100px;background:yellow;margin:10;padding:10;">
<!-- Texte -->
<p>Bloc de texte avant les boîtes flottantes. Bloc de texte avant les boîtes flottantes. Bloc de texte avant les boîtes flottantes. Bloc de texte avant les boîtes flottantes. Bloc de texte avant les boîtes flottantes. </p>
<!-- Bloc flottant 1 -->
<div style="width:45%; height:50px;background:green; margin:10; float:left;"></div>
<!-- Bloc flottant 2 -->
<div style="width:45%; height:50px;background:green; margin:10; float:left;"></div>
<!-- Bloc flottant 3 -->
<div style="width:45%; height:50px;background:green; margin:10; float:left;"></div>
<!-- Bloc flottant 4 -->
<div style="width:45%; height:50px;background:green; margin:10; float:left;"></div>
</div>
<!-- Article 2 -->
<div style="width:100%; height:100px;background:yellow;margin:10;"></div>
<!-- Article 3 -->
<div style="width:100%; height:100px;background:yellow;margin:10;"></div>
</div>
<!-- Colonne de droite -->
<div style="width:29%; height:250;background:blue;float:right;"></div>
</body>
</html> |