Bonjour voici mon problème:
Je n'arrive pas à mettre un margin-bottom à ma première section:
Code html : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
<section id="conteneurPrincipal"></section>
<section id="conteneurResultat"></section>
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
#conteneurPrincipal {
	background-image: url("../img/fond.jpg");
	background-repeat: no-repeat;
	border: solid 7px white;
	clear: left;
	height: 360px;
	margin-bottom: 50px;
	margin: auto;
	width: 970px;
}
 
#conteneurResultat {
	border: solid 7px white;
	background-color: white;
	margin: auto;
	width: 970px;
}