A Pen by Manot Luijiu on CodePen.
Created
May 14, 2022 11:27
-
-
Save ManotLuijiu/663f5991c3af42dd38100c75ed32d2c5 to your computer and use it in GitHub Desktop.
Using Grid to 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
<div class="container"> | |
<h1>Center an element both Horizontally and Vertically using grid</h1> | |
</div> |
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
body, | |
html { | |
height: 100%; | |
display: grid; | |
} | |
.container { | |
margin: auto; | |
} | |
h1 { | |
color: #0984e3; | |
font-size: 80px; | |
text-align: center; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment