Bonjour,
J'arrive pas à afficher un carrousel comme il faut voila ce qui est demandé :
Nom : Annotation 2020-04-25 165646.png
Affichages : 88
Taille : 63,5 Ko
J"ai fais ca :
Code HTML : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
<div id="carrousel" class="box">
				<div class="box-top"></div>
				<div class=”box-content”> <img src="imagePrincipal.jpg" /></div>
				<div class=”box-bottom”></div>
			</div>

En 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
.box {
  margin: 80px 0px 0px 0px;
  width: 100%;
}
 
.box .box-top {
  background: url("box-top.png") no-repeat;
  height: 20px;
}
 
.box .box-content {
  background-color: white;
  padding: 0px 0px 60px 60px;
}
 
F .box .box-bottom {
  background: url("box-bottom.png");
  height: 80px;
}
Ca me donne ca :
Nom : Annotation 2020-04-25 165955.png
Affichages : 76
Taille : 232,5 Ko

Merci