CSS zindex
- Started
- Last post
- 7 Responses
- ganon
does anyone know if safari, camino, or netscape (pc or mac) supports a negative zindex using CSS...i have a couple of images using a -1, and it works fine in IE on mac and pc but nothing else....
- Schill0
I don't think -ve Z-index works under Mozilla/win32 from what I've tested. It might not be considered legal CSS (google css standards maybe?)
- kpl0
z-index is legal. css2. specs say integers, so that implies negative values too.
- ganon0
http://www.w3schools.com/css/css…
this says its all legal, CSS2...when i mess around with this zindex example and put in a -1, it only works in IE....
wtf...!
- kpl0
why don't you just add 100 to all your z-index?
- ganon0
kpl, i have text over the image and i cant zindex that....i need the image behind it....
suggestions?...
- kpl0
body {z-index: 100}
- ganon0
thanks kpl