Created
September 4, 2017 20:58
-
-
Save ratracegrad/75bd2c7eaf8ef102b4d8c4b0e948e9ab to your computer and use it in GitHub Desktop.
3 column layout css code
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
.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