Bonsoir à toutes et tous !
Voilà mon problème, et j'espère que vous allez m'aider![]()
J'ai un tableau principal qui englobe tout mon site :
et je souhaite superposer un petit tableau par dessus, qui se positionnerait par rapport au bord du tableau principal :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8 .tabGeneral{ position:absolute; width:956px; margin-left: auto; margin-right: auto; padding: 0 0 0 0; z-index:1; }
mais cela ne marche pas, malgré plusieurs essais, les valeur left et top prennent en compte le bord du navigateur et non du tableau.
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9 .tabRech{ position:absolute; overflow: auto; z-index:2; background-color:#FF0000; width:300px; left: 350px; top: 0px; }
Comment faire ?![]()
Partager