-
-
Save yaqin8023/b0ffc9463c157fe47e09dd56e31edae6 to your computer and use it in GitHub Desktop.
Vertical centering - absolute positioning method
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
| /** | |
| * Vertical centering - absolute positioning method | |
| */ | |
| main { | |
| position: absolute; | |
| top: 50%; | |
| left: 50%; | |
| transform: translate(-50%, -50%); | |
| padding: 1em 1.5em; | |
| box-sizing: border-box; | |
| background: #655; | |
| color: white; | |
| text-align: center; | |
| } | |
| h1 { | |
| margin: 0 0 .2em; | |
| font-size: 150%; | |
| } | |
| p { | |
| margin: 0; | |
| } | |
| body { | |
| background: #fb3; | |
| font: 100%/1.5 sans-serif; | |
| } |
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
| <main> | |
| <h1>Am I centered yet?</h1> | |
| <p>Center me, please!</p> | |
| </main> |
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
| // alert('Hello world!'); |
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
| {"view":"split-vertical","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment