Skip to content

Instantly share code, notes, and snippets.

@lisasy
Created August 24, 2013 17:52
Show Gist options
  • Save lisasy/6329457 to your computer and use it in GitHub Desktop.
Save lisasy/6329457 to your computer and use it in GitHub Desktop.
Inline block
@mixin inline-block {
ul {
display: block;
li {
display: inline-block;
float: left;
}
}
}
@mixin list-item-width($numberOfListItems) {
li {
width: 100%/$numberOfListItems;
a {
display: block;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment