Created
September 18, 2013 16:32
-
-
Save cgkio/6611785 to your computer and use it in GitHub Desktop.
Absolute Centering (CSS)
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
| .Absolute-Center { | |
| margin: auto; | |
| position: absolute; | |
| top: 0; left: 0; bottom: 0; right: 0; | |
| } | |
| /* | |
| ADVANTAGE: Cross-browser (including IE8-10) | |
| CAVEAT: Height must be declared | |
| source: http://coding.smashingmagazine.com/2013/08/09/absolute-horizontal-vertical-centering-css/ | |
| */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment