Skip to content

Instantly share code, notes, and snippets.

@dexiouz
Created September 5, 2018 23:00
Show Gist options
  • Save dexiouz/8428f5c0b5d07ef14612c0925d6a3ff9 to your computer and use it in GitHub Desktop.
Save dexiouz/8428f5c0b5d07ef14612c0925d6a3ff9 to your computer and use it in GitHub Desktop.
flexbox flex-direction row
.box{
color: white;
font-size: 100px;
text-align: center;
text-shadow: 4px 4px 0 rgba(0,0,0,0.1);
padding: 10px;
}
.box1 {background: #1abc9c}
.box2 {background: #3498db}
.box3 {background: purple}
.box4 {background: #34495a}
.box5 {background: #f1c401}
.box6 {background: #da6a09}
.box7 {background: #c74c3e}
.box8 {background: #0dce3c}
.box9 {background: red}
.box10 {background:blue}
.container {
/* display: flex; or inline-flex */
display: flex;
border: 10px solid goldenrod;
min-height: 100vh;
/* flex-direction: row or column or row-reverse or column-reverse */
flex-direction: row ;
flex-wrap: wrap
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment