Created
March 14, 2018 23:42
-
-
Save jordanhudgens/8f00f68f0e4421c6889b3543fa2b0144 to your computer and use it in GitHub Desktop.
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
<!DOCTYPE html> | |
<html lang='en'> | |
<head> | |
<meta charset='UTF-8'> | |
<title></title> | |
<style> | |
body { | |
margin: 0; | |
padding: 0; | |
} | |
.container { | |
margin: 0; | |
height: calc(100vh - 20px); | |
width: calc(100vw - 20px); | |
border: 10px solid red; | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
} | |
.container > .img_blocks { | |
display: flex; | |
flex-direction: column; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="container"> | |
<div class="img_blocks"> | |
<img src="https://source.unsplash.com/random/150x150" alt=""> | |
<img src="https://source.unsplash.com/random/150x150" alt=""> | |
<img src="https://source.unsplash.com/random/150x150" alt=""> | |
<img src="https://source.unsplash.com/random/150x150" alt=""> | |
<img src="https://source.unsplash.com/random/150x150" alt=""> | |
<img src="https://source.unsplash.com/random/150x150" alt=""> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment