I have following code snippet in css
<style>
#overload {
background-color:black;
opacity:0.6;
position:fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
color:#FFFFFF;
}
.test {
width:50px; height:50px; background-color:white; color black; z-index:1000;
}
</style>
HTML coding
<div id="overload"> </div>
<div class="test">Testing </div>
I want to display "Testing" content above the layer "overload" how can I achieve it through css ? As I tried using z-index and not working as expected.