What has bigger priority: opacity or z-index in browsers?

CssZ IndexOpacity

Css Problem Overview


I'm coding a "popup window" in JavaScript and I've come across an interesting thing:

Cropped screenshot demonstrating strange stacking behavior

The navy square under the popup window is visible even though I would expect it to be hidden. The popup was added after the square, so it should be on the top.

CSS opacity property of the navy square is 0.3. From what I've tried, it seems that every number from the interval (0,1) would yield the same result. If I change it to 1, then it behaves as expected (i.e. the part of the square under the popup is hidden).

I've tried to set the z-index property to 10 for the square and 100 for the popup, but it doesn't change anything.

What am I missing? Why is part of square displayed?

Tested browsers:

  • Firefox 3.6.x

  • Chrome 4

Css Solutions


Solution 1 - Css

This is not a bug and is actually how it's supposed to work. It's a bit confusing as the elaborate description of Stacking Contexts doesn't mention anything about it. However, the visual formatting module links to the color module where this particular gotcha can be found (emphasis mine):

> Since an element with opacity less than 1 is composited from a single > offscreen image, content outside of it cannot be layered in z-order > between pieces of content inside of it. For the same reason, > implementations must create a new stacking context for any element > with opacity less than 1. If an element with opacity less than 1 is > not positioned, implementations must paint the layer it creates, > within its parent stacking context, at the same stacking order that > would be used if it were a positioned element with ‘z-index: 0’ and > ‘opacity: 1’. If an element with opacity less than 1 is positioned, > the ‘z-index’ property applies as described in [CSS21], except that > ‘auto’ is treated as ‘0’ since a new stacking context is always > created. See section 9.9 and Appendix E of [CSS21] for more > information on stacking contexts. The rules in this paragraph do not > apply to SVG elements, since SVG has its own rendering model ([SVG11], > Chapter 3).

Solution 2 - Css

It's not a problem of opacity being more important than z-index, rather than z-index being relative to their stacking context (see z-index in the CSS2 specification).

In other words, z-index are only significant within the context of a positioned ancestor (whether its relative, absolute or fixed). What you need to do to fix your problem is add a position: relative; to the element that contain both your popup and your navy square, and probably add it a z-index: 1; . Seeing your screenshot it will probably be a top element such as a wrapper div.

Solution 3 - Css

Workaround for two elements, like divs: add a 0.99 opacity to your top element, and the order of both is reestablished.

opacity: 0.99;

Solution 4 - Css

An alternative to using opacity, is to use a transparent colour (with an alpha value)

So, rather than using

{
    background: gray;
    opacity: 0.5;
}

You could try

{
    background: rgba(128,128,128,0.5);
}

It isn't identical, but I was encountering the same issue you were having, and the above fixed it.

Solution 5 - Css

Example code might be needed to debug this problem.

You might put overflow: hidden and possibly position: relative in a DIV which surrounds all the editor objects to try to force the elements to only be drawn within that DIV, e.g:

<div style="overflow: hidden; position: relative">
    (Editor object buttons go here)
</div>

As a last resort, you could also try a iframe in between the two elements to try to stop them seeping through.

Solution 6 - Css

You might try to set the popup window's DIV like this using !important so the style doesn't change on applying new style or class:

background-color: white !important;
z-index: 100 !important;
opacity: 1.0 !important;

Then, make new CSS class:

.PopupElement
{
 z-index: inherited;
 opacity: inherited;
}

And add class to all elements in the window, like this for example:

<input value="posx" class="some_class PopupElement"/>

My guess is that this would work, since there is no priority in applying CSS attributes... as far as I know. =)

Solution 7 - Css

I had the same issue. Using rgba instead of color/opacity solved my problem. Working with LESS (in the Bootstrap framework), the fade() function did the conversion for me.

Solution 8 - Css

Although @Guillaume Esquevin already gave a great answer, I will try to expand on it in case someone ignores what a stacking context is (like I did).

As you can read here, there is something called stacking context, which refers to a group of elements sharing a parent that move together in the stack. An example could be a div and all its children.

There are three ways to create a stacking context: in the root of the document (the html element), by positioning the parent element, and by changing the opacity of the parent to something lower than 1.

Then, if you have a div with opacity lower than 1 and you want some sibling element of this div to appear behind it (and its children), you can create a new stacking context on such sibling by setting its position to relative or by changing its opacity as well.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionMartyIXView Question on Stackoverflow
Solution 1 - Css0b10011View Answer on Stackoverflow
Solution 2 - CssGuillaume EsquevinView Answer on Stackoverflow
Solution 3 - CssEnzo DBView Answer on Stackoverflow
Solution 4 - CssRich SView Answer on Stackoverflow
Solution 5 - CsscryoView Answer on Stackoverflow
Solution 6 - CssCipiView Answer on Stackoverflow
Solution 7 - CssPeter JanesView Answer on Stackoverflow
Solution 8 - CssMr. DuhartView Answer on Stackoverflow