Created
September 3, 2015 14:40
-
-
Save softwarespot/bd22b3d8c8c89db184f6 to your computer and use it in GitHub Desktop.
Display three columns
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
/*HTML not included!*/ | |
footer { | |
background: #c0392b; | |
overflow: hidden; | |
width: 100%; | |
} | |
footer div { | |
background: #e74c3c; | |
float: left; | |
outline: 1px solid #000; | |
width: 33.33%; | |
} | |
footer div p { | |
padding: 10px; | |
} | |
.blue-color { | |
background: #3498db; | |
} | |
.green-color { | |
background: #40d47e; | |
} | |
.red-color { | |
background: #e74c3c; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment