Last active
August 29, 2015 13:56
-
-
Save extstopcodepls/9068067 to your computer and use it in GitHub Desktop.
center div vertically and horizontally
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 style="width: 100%; height: 300px; position: relative"> | |
| <div style="width: 50%; height: 50%; position: absolute; margin: auto; top: 0; left: 0; bottom: 0; right: 0;"> | |
| somthing here will be centered | |
| </div> | |
| </div> | |
| <!-- http://coding.smashingmagazine.com/2013/08/09/absolute-horizontal-vertical-centering-css/#Height --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment