-
-
Save rilian/e100102f31132e9a01731b3e18d2d7c4 to your computer and use it in GitHub Desktop.
FE_Interview_Snippets
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
<!-- 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