Skip to content

Instantly share code, notes, and snippets.

@jordanhudgens
Created March 14, 2018 23:42
Show Gist options
  • Save jordanhudgens/8f00f68f0e4421c6889b3543fa2b0144 to your computer and use it in GitHub Desktop.
Save jordanhudgens/8f00f68f0e4421c6889b3543fa2b0144 to your computer and use it in GitHub Desktop.
<!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