A Pen by luis barqueira on CodePen.
Created
December 2, 2020 23:33
-
-
Save lbarqueira/b557d27129b78b2380e94f9fd3d21807 to your computer and use it in GitHub Desktop.
css-grid-example
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="gallery"> | |
<img src="http://placeimg.com/640/480/animals"> | |
<img src="http://placeimg.com/640/480/arch"> | |
<img src="http://placeimg.com/640/480/nature"> | |
<img src="http://placeimg.com/640/480/people"> | |
<img src="http://placeimg.com/640/480/tech"> | |
</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
*{ | |
margin: 0; | |
padding: 0; | |
box-sizing: border-box; | |
} | |
.gallery{ | |
display:grid; | |
grid-template-columns: repeat(auto-fit,minmax(300px, 1fr)); | |
grid-column-gap: 20px; | |
grid-row-gap: 20px; | |
} | |
.gallery img{ | |
width: 100%; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment