Basically I want a relative element to hide its absolute child on the z plan.
ul {z-index:10; position:relative;}
ul ul {z-index:-10; position:absolute;}
They are positonned on top of each other. The first should hide its child, but it's not happening that way.
See the fiddle. I try to make the red part disappear under the blue one.
Any help muy appreciated
Thank you