Last active
March 23, 2018 03:42
-
-
Save maisonm/f637e2983cc656ee1c207ac2d8e230c6 to your computer and use it in GitHub Desktop.
Flexbox Example - CSS
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
.container { | |
display: flex; | |
background: #1c9dc5; | |
font-family: 'Rubik', sans-serif; | |
} | |
.box { | |
border: solid #333 2px; | |
background: #a8a8a8; | |
height: 150px; | |
width: 150px; | |
margin: 2px; | |
} | |
/* Leave these commented out initially */ | |
/* #box1 { | |
font-size: 3em; | |
} | |
#box2{ | |
font-size: 2em; | |
} | |
#box3 { | |
font-size: 1em; | |
} | |
#box4{ | |
font-size: 5em; | |
} */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment