Index Z le plus élevé possible
z-index: 2147483647;
Blushing Bison
z-index: 2147483647;
img {
position: absolute;
/*position: relative;
//position: fixed;*/
left: 0px;
top: 0px;
z-index: -1;
}
The z-index property specifies the stack order of an element.
#div1
{
z-index: 1;
}
#div2{
z-index: 10;
}
#nav {
position: fixed;
...
z-index: 2;
}
#main {
position: absolute;
...
z-index: 1;
}
img {
position: absolute;
left: 0px;
top: 0px;
z-index: -1;
}