I have a html page with different elements and I want to add a div with a kind of transparent effect to hide the content of my page. I tried to wrap my whole page in a div just after the body with the following css
<body>
<div style="position:relative;width:100%;height:100%;
background-color:red;z-index:9999999">
</div>
</body>
Can anyone help?