Bonjour,
Sur une page html je voudrais superposer deux images
La première à un fond gris avec les angles arrondis la
Deuxième c’est une photo avec à un fond transparent.
Mais j’ai un problème de centrage des photos Png qui ont un format de 150x113
Et l’image de fond 250x175.
Merci pour votre aide.
Salutations
Sur une page html je voudrais superposer deux images
La première à un fond gris avec les angles arrondis la
Deuxième c’est une photo avec à un fond transparent.
Mais j’ai un problème de centrage des photos Png qui ont un format de 150x113
Et l’image de fond 250x175.
Merci pour votre aide.
Salutations
#conteneur {
margin-top:7%;
text-align:center;
}
.Ma1erImg {
display:block;
margin:4% auto 0;
background-image: url(CadrePhoto.bmp);
background-repeat: no-repeat;
}
.conteneurImg {
margin-top:2%; /* Un peu d'espace entre le conteneur des img */
}
.conteneurImg img {
background-image: url(CadrePhoto.bmp);
background-repeat: no-repeat;
}
<div id="conteneur">
<img class="Ma1erImg" src="Photos-1.png" width="150" height="113" alt="" />
<div class="conteneurImg">
<img src=" Photos-2.png" width="150" height="113" />
<img src=" Photos-3.png" width="150" height="113" />
<img src=" Photos-4.png" width="150" height="113" />
</div>
<div class="conteneurImg">
<img src=" Photos-5.png" width="150" height="113" />
<img src=" Photos-6.png" width="150" height="113" />
<img src=" Photos-7.png" width="150" height="113" />
</div>
<div class="conteneurImg">
<img src=" Photos-8.png" width="150" height="113" />
<img src=" Photos-9.png" width="150" height="113" />
<img src=" Photos-10.png" width="150" height="113" />
<div class="conteneurImg">
<img src=" Photos-11.png" width="150" height="113" />
</div>
</div>