Created
August 20, 2017 11:24
-
-
Save paulobunga/f88db92640c9c65c317b454e591ec432 to your computer and use it in GitHub Desktop.
Centering with html css grid
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
<html> | |
<head> | |
<title>Centering with Grid</title> | |
<style> | |
body, html { | |
height: 100%; | |
display: grid; | |
} | |
h1.title { | |
margin: auto; | |
} | |
</style> | |
<head> | |
<body> | |
<h1 class="title"> | |
Hello, Paul Obunga | |
</h1> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment