Last active
October 8, 2020 12:51
-
-
Save freehuntx/e82f5f5a5682255edb17ff7ada124c78 to your computer and use it in GitHub Desktop.
Pure CSS Modal (Single DIV)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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