Skip to content

Instantly share code, notes, and snippets.

@michaelwclark
Created October 6, 2015 19:46
Show Gist options
  • Select an option

  • Save michaelwclark/cd547c20e65d583f3b67 to your computer and use it in GitHub Desktop.

Select an option

Save michaelwclark/cd547c20e65d583f3b67 to your computer and use it in GitHub Desktop.
Short Example of three col alignment.
<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">&nbsp;</div>
<div class="element orange">&nbsp;</div>
<div class="element gray">&nbsp;</div>
</div>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment