J'utilise le CSS de mise en forme avec les proprietes suivantes pour mettre un menu sur la gauche :
div#titre
{
overflow: auto;
position: fixed;
}
div#page
{
overflow: hidden;
}
div#menu
{
float: left;
position: fixed;
width: 300;
border-bottom-style:dashed;
border-bottom-width:1;
border-top-style:dashed;
border-top-width:1;
border-left-style:dashed;
border-left-width:1;
border-right-style:dashed;
border-right-width:1;
}
div#contenu
{
float: right;
position: fixed;
}
Ca marche nickel sous IE, mais pas sous mozilla, une idee pour rendre compatible ?


