A Pen by James Dunn on CodePen.
Created
July 10, 2019 22:55
-
-
Save jwdunn1/a527d560cfce2927af60ba200bff2029 to your computer and use it in GitHub Desktop.
Centering
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"> | |
<img src="http://lorempixel.com/200/200/cats"> | |
</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
body {margin:0} | |
.parent { | |
height: 100vh; | |
background: #000; | |
display: grid; | |
align-items: center; | |
justify-content: center; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment