• # openweb est ton ami

    Posté par . En réponse au message Problème de positionnement CSS. Évalué à 3.

    Va faire un tour sur openweb : www.openweb.eu.org
    Les cours d'initiation au positionnement float devraient t'aider ...

    Basiquement, tu vas te retrouver avec ceci :

    .leftpanel
    {
    float: left;
    width : 50%;
    }

    .rightpanel
    {
    float: left;
    width : 50%;
    }

    L'important ici ce sont les width :si tu ne les specifient pas en conjonction avec ton float, ca ne marche pas.