Skip to content

Instantly share code, notes, and snippets.

@ncesar
Created January 16, 2019 17:51
Show Gist options
  • Save ncesar/2e2f2047c9a1dc3e58884d01dcaed12d to your computer and use it in GitHub Desktop.
Save ncesar/2e2f2047c9a1dc3e58884d01dcaed12d to your computer and use it in GitHub Desktop.
Unclickable div with CSS
.blocked
{
position:relative;
}
.blocked:after
{
content: '';
position: absolute;
left:0;
right:0;
top:0;
bottom:0;
z-index:1;
background: #cac8c894;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment