An example I can give:
.noturno{
z-index: 9000;
position: fixed;
height: 100%;
width: 100%;
background-color: rgba(0,0,0,0.5);
}
<div class="noturno">
</div>
<div class="corpo">
<button>Teste</button>
<a href="#">Teste 1</a>
</div>
I would like to know how to make div.noturno
"transparent" for clicks, ie, can you click on the button, link, etc. below it?