Skip to content

Instantly share code, notes, and snippets.

@tdwesten
Created November 6, 2014 07:53
Show Gist options
  • Save tdwesten/6e217a8a930ac022a256 to your computer and use it in GitHub Desktop.
Save tdwesten/6e217a8a930ac022a256 to your computer and use it in GitHub Desktop.
Styling unordered lists as horizontal menu's via SCSS Mixin
@mixin menu_list{
ul { list-style-type: none; }
li { float: left; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment