Skip to content

Instantly share code, notes, and snippets.

@dexiouz
Created September 6, 2018 20:46
Show Gist options
  • Save dexiouz/d9a57f4166b2cc9f8ec0203b1f35c107 to your computer and use it in GitHub Desktop.
Save dexiouz/d9a57f4166b2cc9f8ec0203b1f35c107 to your computer and use it in GitHub Desktop.
flex-box-ordering.css
.container {
display: flex
}
.box {
flex: 1;
order: 1;
color: white;
font-size: 100px;
text-align: center;
text-shadow: 4px 4px 0 rgba(0,0,0,0.1);
padding: 10px;
}
.box3 {
order: 3
}
.box7 {
order: 2;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment