I found a really strange behavior for CSS opacitycombined with floating elements.
Consider the following HTML:
<div style="position: relative; clear: both">
<div style="float:left>Left button</div>
<div style="float:right>Right button</div>
</div>
<div style="opacity: 0.9">Overlay</div>
The latter divwill overlap the first two floating. Removing opacity will put the last div under the floats.
Here's what it looks like on my real page (a red background is just used to emphasize the effect):
Now, if I remove the opacity of the middle div:
Ship, floating divs are available.
I tried the property z-index, but was not surprised when it did not help. I even managed to reproduce this in a JS script .
, ? ?
: chrome firefox. .
.
PS.: - , JSFiddle ? , , .