Created
April 27, 2020 06:20
-
-
Save ethanpil/045c5c670eb68b34653f43b9919df670 to your computer and use it in GitHub Desktop.
Flexbox Dead Center
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
| <html> | |
| <head> | |
| <title>Flexbox Dead Center</title> | |
| <style> | |
| .deadcenter { | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| flex-direction: column; | |
| height: 100%; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="deadcenter"> | |
| <img src="image.png" /> | |
| <h1>Welcome to the center of the universe.</h1> | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment