Bonjour,
A l'intérieur d'une div (avec une image en background), je souhaite disposer des images réactives (dans l'exemple, minicross.png). Problème : le margin-left est ok, mais pas le margin-top : l'image reste invariablement collée tout en haut.
HTML
CSS
Merci de m'aider.
A l'intérieur d'une div (avec une image en background), je souhaite disposer des images réactives (dans l'exemple, minicross.png). Problème : le margin-left est ok, mais pas le margin-top : l'image reste invariablement collée tout en haut.
HTML
<div id="plan">
<a class="minicross" href="#"><img src="images/minicross.png" width="95" height="82"<span><img src="images/toph_minicross" width="287" height="206"</span></a>
</div>
CSS
#plan {
background: url(images/planferme.png) no-repeat;
height: 460px;
width: 536px;
}
a.minicross {
margin-top: 172px;
margin-left: 49px;
width: 95px;
height: 82px;
}
Merci de m'aider.