Bonjour, j'ai un problème avec mes images lorsque je réduit la taille de la fenêtre. Les images disparaissent dès que le CSS rentre dans la partie responsive (dès que je suis en dessous de 1248 pixels)
Voici mon code
J'espère que vous m'aiderez
Modifié par TheBec (07 Apr 2019 - 20:18)
Voici mon code
/* Footer */
footer
{
display: flex;
justify-content: space-between;
font-size: 2em;
margin-top: 15px;
padding-top: 15px;
padding-left: 15px;
}
img[title="Becaye"[#black][/#]]
{
width: 150px;
height: 150px;
margin: -10% 10% 0 -50%;
border-radius: 150px;
}
/* footer - Pour les smartphones et tablettes */
/* smartphones */
@media all and (min-width: 625px) and (max-width: 1248px)
{
footer
{
font-size: 1.1em;
margin: 3% 0 0 0;
padding: 4px;
}
}
/* Tablettes */
@media all and (max-width: 624px)
{
footer
{
font-size: 0.8em;
margin: 3% 0 0 0;
padding: 2px;
}
}
J'espère que vous m'aiderez
Modifié par TheBec (07 Apr 2019 - 20:18)