06-08-2006, 15:06 PM
Bonjour, après plusieurs tentatives, mon problème persiste toujours. Il s'agit d'un problème de positionnement de deux div. Je voudrais les positionner l'une en dessous l'autre sans marge mais la seconde chevauche la première, voilà mes scripts html et css :
html
html
<body>
<DIV id="global"></DIV>
<DIV id="bigfooter"></DIV>
</body>
et css
#global &#123;
BACKGROUND&#58; url&#40;fond.gif&#41;;
WIDTH&#58; 703px;
TEXT-ALIGN&#58; center;
HEIGHT&#58; 500px;
POSITION&#58; absolute;
LEFT&#58; 50%;
MARGIN-LEFT&#58; -352px;
&#125;
#bigfooter &#123;
POSITION&#58; relative;
HEIGHT&#58; 200px;
WIDTH&#58; 703px;
MARGIN-LEFT&#58; auto;
MARGIN-RIGHT&#58; auto;
&#125;
Quelqu'un pourrait-il m'aider?
Merci d'avance!