Created
August 12, 2013 06:04
-
-
Save denvers/6208556 to your computer and use it in GitHub Desktop.
Absolute Centered Position (IE8+, Firefox, Chrome, etc.)
This file contains 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
/* Within container */ | |
.Absolute-Center { | |
width: 50%; | |
height: 50%; | |
overflow: auto; | |
margin: auto; | |
position: absolute; | |
top: 0; left: 0; bottom: 0; right: 0; | |
} | |
/* Within Viewport */ | |
.Absolute-Center.is-Fixed { | |
width: 50%; | |
height: 50%; | |
overflow: auto; | |
margin: auto; | |
position: fixed; | |
top: 0; left: 0; bottom: 0; right: 0; | |
z-index: 999; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment