A Pen by Secret Sam on CodePen.
Created
April 15, 2014 23:15
-
-
Save anonymous/10787657 to your computer and use it in GitHub Desktop.
A Pen by A Non Ymous.
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
<div class="container"> | |
<div class="box"> | |
</div> | |
</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
.container { | |
height: 300px; | |
width: 300px; | |
background: #eee; | |
position: absolute; | |
margin: -150px 0 0 -150px; | |
left: 50%; | |
top: 50%; | |
} | |
.box { | |
height: 100px; | |
width: 100px; | |
background: #222; | |
position: absolute; | |
/*Centering Method 2*/ | |
margin: -50px 0 0 -50px; | |
left: 50%; | |
top: 50%; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment