up vote 22 down vote favorite
8
share [g+] share [fb]

I have a DIV in my HTML page. I am showing this DIV based on some condition. But DIV is displaying behind any HTML element where I pointed the mouse cursor.
I have tried all value for Z-INDEX property from 0 - 999999.

Can anyone tell me why this is happening?

Is there any minimum or maximum value of Z-INDEX property of CSS?
For example, Following HTML is defined in an ascx control:

<table cellspacing="0" cellpadding="0" width="100%">
  <tr>
    <td>
      <asp:HyperLink ID="lnkProgram" runat="server"></asp:HyperLink>
    </td>
  </tr>
  <tr>
     <td>
         <div class="divClass">
           Some Data
         </div>
     </td>
  </tr> 
</table>

And the CSS is:

.divClass
{
     position: absolute; 
     left: 25px; 
     top: 25px; 
     width: 320px;
     height: 300px; 
     z-index: 1000; 
     display: none;
}

And I am showing and hiding specific DIV for Hyperlink using +Jquery which is on main page.

link|improve this question

18% accept rate
The issue probably isn't to do with z-index specifically. Can you give some example HTML and CSS that illustrates the behaviour? What browsers are you experiencing this in? – roryf Jan 29 '09 at 9:57
Yea, what Rory said. – dylanfm Jan 29 '09 at 9:59
Just out of interest could you try the same thing out without using the table, just some content, the link and the div. Also put a background colour on the div just to be certain while you're developing. – sanchothefat Jan 29 '09 at 11:50
feedback

6 Answers

http://www.w3.org/TR/CSS21/visuren.html#z-index

'z-index'

Value: auto | <integer> | inherit

http://www.w3.org/TR/CSS21/syndata.html#numbers

Some value types may have integer values (denoted by <integer>) or real number values (denoted by <number>). Real numbers and integers are specified in decimal notation only. An <integer> consists of one or more digits "0" to "9". A can either be an <integer>, or it can be zero or more digits followed by a dot (.) followed by one or more digits. Both integers and real numbers may be preceded by a "-" or "+" to indicate the sign. -0 is equivalent to 0 and is not a negative number.

Note that many properties that allow an integer or real number as a value actually restrict the value to some range, often to a non-negative value.

So basically there are no limitations for z-index value in the CSS standard, but I guess most browsers limit it to signed 32-bit values (−2147483648 to +2147483647) in practice (64 would be a little off the top, and it doesn't make sense to use anything less than 32 bits these days)

link|improve this answer
13  
But i need more layeres on my website than i can represent with a 32 bit value! :-P – Arve Systad May 13 '09 at 7:40
1  
Good luck loading that site :P – Lester Peabody Dec 16 '11 at 5:14
feedback

My tests indeed show that z-index: 2147483647 is the max value, tested on FF 3.0.1 for OS X. But what's funny is the integer overflow bug I discovered... If you type z-index: 214748364**8** (which is 2147483647 + 1) the element just goes behind all other elements. LOL, at least the browser doesn't crash...

And the lesson to learn is you should beware of entering too large values for z-index b/c they wrap around.

link|improve this answer
5  
Because this (2147483647) is the largest positive value of a signed integer on a 32 bit operating systems... – Badr Hari Dec 1 '10 at 6:45
feedback

It depends on the browser (although the latest version of all browsers should max out at 2147483638), as does the browser's reaction when the maximum is exceeded.

http://www.puidokas.com/max-z-index/

link|improve this answer
feedback

Z-Index only works for elements that have position: relative; or position: absolute; applied to them. If that's not the problem we'll need to see an example page to be more helpful.

EDIT: The good doctor has already put the fullest explanation but the quick version is that the minimum is 0 because it can't be a negative number and the maximum - well, you'll never really need to go above 10 for most designs.

link|improve this answer
I've used "z-index:-1;" before to "sink" an element so it can't be clicked. It's probably not a popular solution, but it does work. :P – Ty. Jan 30 '09 at 15:00
3  
I know this is a bit late, but it works with position:fixed as well. – Tim Jul 13 '10 at 4:58
feedback

Out of experience, I think the correct Max Z-Index is

2147483638
link|improve this answer
feedback

A user above says "well, you'll never really need to go above 10 for most designs."

Depending on your project, you may only need z-indexes 0-1, or z-indexes 0-10000. You'll often need to play in the higher digits...especially if you are working with lightbox viewers (9999 seems to be the standard and if you want to top their z-index, you'll need to exceed that!)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.