28172 sujets

CSS et mise en forme, CSS3

Bonjour,

Voici le code que j'exploite pour afficher une bannière a mon site

<div id="header" style="width:100%; height:150px; background: transparent url(fond_header.gif) top left repeat-x;">
<div style="height:142px; width:960px; background: transparent url(logos.png) top left no-repeat;"></div>
</div>

Seulement quand je réduit ma fenêtre j'ai un ascenseur vertical et horizontal, ça ne se réduit pas de façon proportionnel, comment faire ?

Merci
Bonjour,
Une image porteuse d'informations doit être insérée dans le code HTML et non dans le CSS.
Du coup, on pourrait peut-être avoir quelque chose comme :
<div id="header" style="width:100%; background: transparent url(fond_header.gif) top left repeat-x;">
<img src="logos.png" alt="Logo" style="max-width : 100%" />
</div>