Skip to content

Instantly share code, notes, and snippets.

@fdcore
Created March 27, 2017 19:46
Show Gist options
  • Save fdcore/a8bc50cf2102a61f0196bc71e1e7d624 to your computer and use it in GitHub Desktop.
Save fdcore/a8bc50cf2102a61f0196bc71e1e7d624 to your computer and use it in GitHub Desktop.
full center modal
.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;
}
@fdcore
Copy link
Author

fdcore commented Mar 27, 2017

<div class="outer">
  <div class="inner">
    Hello World
  </div>
</div>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment