Skip to content

Instantly share code, notes, and snippets.

@ratracegrad
Created September 4, 2017 20:58
Show Gist options
  • Save ratracegrad/75bd2c7eaf8ef102b4d8c4b0e948e9ab to your computer and use it in GitHub Desktop.
Save ratracegrad/75bd2c7eaf8ef102b4d8c4b0e948e9ab to your computer and use it in GitHub Desktop.
3 column layout css code
.flexContainer {
display: flex;
}
.flexSpaceAround {
justify-content: space-around;
}
.subContainer {
width: 80%;
margin: 0 auto;
}
.col {
width: 32%;
border: 1px solid #777777;
border-radius: 8px;
background: white;
padding: 20px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment