Voilà, je suis en train de crée un site et j'aimerai faire une page de vignettes avec image et lien comme sous-catégories, mais les vignettes ne s'insère pas dans le corps qui est censé se répéter :/ (les vigettes commence la ou le corps se situe et ensuite elle coupe tout jusqu'en bas !) je fais appelle à vous car la communauté ma déjà aidé.

voici le html :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" >
   <head>
      <title>Thymep</title>
	  <meta http-esquiv="Content-Type" content="text/html; charset=iso-8859-1" />
	  <link rel="stylesheet" media="screen" type="text/css" href="styles/nos_produits.css" />
   </head>
   <body>
      <div id="conteneur">
	     <div id="header"></div>
		 <div id="menu">
		             <a href="index.html" href='index.html'>Accueil</a> 
					 <a href="Qui sommes-nous .html" href='index.html'>Qui sommes-nous ?</a> 
					 <a href="Nos produits.html" href='index.html'>Nos produits</a> 
					 <a href="Nos réalisations.html" href='index.html'>Nos réalisations</a>
					 <a href="Contact.html" href='index.html'>Contact</a>
					 </div>
		 <div id="corps">
 
		        <p class="flottante"><img src="images/carte_10copieblue.gif" width="227" height="237" alt="france"></p>
                <p class="flottante">Lettres découpés</p>
                <p class="flottante">Lettres boîtier</p>
                <p class="flottante">Caissons lumineux</p>
                <p class="flottante">Totems</p>
                <p class="flottante">Banderolls</p>
                <p class="flottante">Carottes de Tabac</p>
                <p class="flottante">Croix de Pharmacie</p>
                <p class="flottante">Lettrage vertical</p>
                <p class="flottante">Néon</p>
                <p class="flottante">Leds</p>
                <p class="flottante">Eclairages divers</p>				
 
				</div>
		 <div id="footer">Thymep Copyright - Tous droits réservés © 2008-2009
				 </div>	
	  </div>
   </body>
</html>
Et le css:

Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
#header
{
   background-image: url("../images/header.jpg");
   width: 1024px;
   height: 310px;
   }
 
 
#menu
{
   background-image: url("../images/menu.jpg");
   width: 1024px;
   height: 50px;
   text-align: center;
   font-size: 20px;
   padding-top: 24px;
   clear: padding;
   color: white;
}
 
#menu a
{
   color: white;
   text-decoration: none;
   margin-left: 10px;
   margin-right: 10px;
   font-family: astrolyte;
}
 
#menu a:hover
{
   text-decoration: underline;
   font-family: astrolyte; font-weight: bold;
   text-shadow:  0.1em 0.1em 0.2em white
}
 
#footer
{
   background-image: url("../images/corps-bas.jpg");
   width: 1024px;
   height: 26px;
   color: #757674;
   font-size: 15px;
   text-align: center;
   padding-top: 27px;
   font-family: arial, verdana, sans-serif;
}
 
#corps
{
   background-image: url("../images/corps-milieu.jpg");
   background-repeat: repeat-y;
   width: 912px;
   padding-left: 56px;
   padding-right: 56px;
   color: white;
   max-width: 3000px;
   clear: both;
   font-family: "Verdana", sans-serif;
   }
 
body
{
   background-color: #030303;
}
 
#conteneur
{
   margin: auto;
   border: 1px solid black;
   font-family: "Verdana", sans-serif;
}
 
#conteneur
{
   margin: auto;
   width: 1024px;
}
 
* 
{
    margin: 0;
    padding: 0;
}
 
.flotte
{
   float: center;
   }
 
 
 
.flottante {
  background-color: #00ff00;
  border: 2px dotted #ffff00;
  margin: 2px;
  width: 227px;
  height: 237px;
  text-align: center;
  border: solid red 4px;
  float: left;
}
.conteneur {
  width: 100%;
}
.spacer {
  clear: both;
}
Merci d'avance