Created
October 2, 2020 12:54
-
-
Save tcelestino/cc2b206672b2e8490a7ed9edb92bb546 to your computer and use it in GitHub Desktop.
place item center
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
<div class="parent"> | |
<div class="child"> | |
1 line center | |
</div> | |
</div> |
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
.parent { | |
display: grid; | |
place-items: center; | |
width: 100vw; | |
height: 100vh; | |
background: #a96da3; | |
} | |
.child { | |
background: #fff; | |
padding: 2em; | |
border-radius: 20px; | |
font-size: 1em; | |
font-style: italic; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment