Skip to content

Instantly share code, notes, and snippets.

@jescalan
Created February 13, 2012 17:51
Show Gist options
  • Select an option

  • Save jescalan/1818651 to your computer and use it in GitHub Desktop.

Select an option

Save jescalan/1818651 to your computer and use it in GitHub Desktop.
Split Mixin
=split($margin: 10px)
$left: $margin
$right: $margin
@if type-of($margin) == list
$left: nth($margin, 1)
$right: nth($margin, 2)
overflow: hidden
& > *
overflow: hidden
& > *:first-child
float: left
margin-right: $right
& > *:nth-child(3)
float: right
margin-left: $left
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment