Skip to content

Instantly share code, notes, and snippets.

@kilmc
Created December 10, 2013 13:55
Show Gist options
  • Select an option

  • Save kilmc/7890903 to your computer and use it in GitHub Desktop.

Select an option

Save kilmc/7890903 to your computer and use it in GitHub Desktop.
@mixin floating-list($items, $spacing: 4) {
display: block;
float: left;
// margin-left: $spacing;
width: (100/$items + 0%) - ($spacing/$items + 0%);
margin-left: ($spacing/($items - 1)) + 0%;
&:first-child,
&:last-child {
margin-left: 0;
}
&:last-child {
float: right;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment