Created
January 20, 2016 09:05
-
-
Save MkShaman/e638bf1626e27404e8ec to your computer and use it in GitHub Desktop.
Выравнивание текста по высотре
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <style type="text/css"> | |
| html, body { | |
| height:100%; | |
| width:100%; | |
| margin:0; | |
| display:flex; | |
| } | |
| p { | |
| margin:auto; | |
| font-size: 2em; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <p>Hello, World.</p> | |
| </body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment