Skip to content

Instantly share code, notes, and snippets.

@rilian
Forked from viattik/test.html
Created August 31, 2018 17:58
Show Gist options
  • Save rilian/e100102f31132e9a01731b3e18d2d7c4 to your computer and use it in GitHub Desktop.
Save rilian/e100102f31132e9a01731b3e18d2d7c4 to your computer and use it in GitHub Desktop.
FE_Interview_Snippets
<!-- Make all small squares to inside container, 3 in row, 10px padding everywhere -->
<div class="container">
<div class="image"></div>
<div class="image"></div>
<div class="image"></div>
<div class="image"></div>
<div class="image"></div>
<div class="image"></div>
<div class="image"></div>
<div class="image"></div>
</div>
<style>
.container {
border: 1px solid black;
width: 340px;
}
.image {
width: 100px;
height: 100px;
border: 1px solid red;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment