Skip to content

Instantly share code, notes, and snippets.

@maisonm
Last active March 23, 2018 03:42
Show Gist options
  • Save maisonm/f637e2983cc656ee1c207ac2d8e230c6 to your computer and use it in GitHub Desktop.
Save maisonm/f637e2983cc656ee1c207ac2d8e230c6 to your computer and use it in GitHub Desktop.
Flexbox Example - CSS
.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