Created
October 6, 2015 19:46
-
-
Save michaelwclark/cd547c20e65d583f3b67 to your computer and use it in GitHub Desktop.
Short Example of three col alignment.
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> | |
| <style type="text/css"> | |
| .container{width:400px;} | |
| .container .element {width:33%; float:left;} | |
| .blue {background:blue;} | |
| .orange {background:orange;} | |
| .gray {background: gray;} | |
| </style> | |
| <div class="container"> | |
| <div class="element blue"> </div> | |
| <div class="element orange"> </div> | |
| <div class="element gray"> </div> | |
| </div> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment