Skip to content

Instantly share code, notes, and snippets.

@erikflowers
Created September 26, 2013 06:03
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save erikflowers/6710391 to your computer and use it in GitHub Desktop.
Save erikflowers/6710391 to your computer and use it in GitHub Desktop.
Quick add no styles to a UL - either inline or block
.ul-inline-no-style() {
margin: 0px;
list-style: none;
.clearfix;
li {
float: left;
display: block;
}
}
.ul-block-no-style() {
margin: 0px;
list-style: none;
.clearfix;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment