Skip to content

Instantly share code, notes, and snippets.

@freehuntx
Last active October 8, 2020 12:51
Show Gist options
  • Save freehuntx/e82f5f5a5682255edb17ff7ada124c78 to your computer and use it in GitHub Desktop.
Save freehuntx/e82f5f5a5682255edb17ff7ada124c78 to your computer and use it in GitHub Desktop.
Pure CSS Modal (Single DIV)
<style>
.single-div-modal {
position: fixed;
box-sizing: border-box;
z-index: 1337;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: white;
background-clip: padding-box;
border-style: solid;
border-color: rgba(0,0,0,.8);
border-width: 10vh 10vw;
padding: 2rem;
}
</style>
<div class="single-div-modal">
content
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment