Created
March 27, 2017 19:46
-
-
Save fdcore/a8bc50cf2102a61f0196bc71e1e7d624 to your computer and use it in GitHub Desktop.
full center modal
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
.outer { | |
position: fixed; | |
top: calc(50% - 300px / 2); | |
background: red; | |
width: 300px; | |
display: flex; | |
height: 300px; | |
left: calc(50% - 300px / 2); | |
z-index: 10; | |
vertical-align: middle; | |
text-align: center; | |
border: 5px solid green; | |
} | |
.outer .inner { | |
margin: auto; | |
color: blue; | |
font-size: 3em; | |
} |
Author
fdcore
commented
Mar 27, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment