<% @side_nav = "type" %>
<% @page_title = "Inline Lists" %>

<%= @page_title %>

You can use this simple construct when you just need a horizontal list of links, like in a footer, and want more control than just spaces between them.


Build With Predefined HTML Classes

There are two ways to build inline lists in Foundation 4: with our predefined HTML or with our mixins. Building inline lists using our predefined classes is easy. You'll start with an unordered list and add a class of .inline-list to it. From there, you just need to add list items with links in them.

<%= code_example ' ', :html %>

For these styles to come across, make sure you have the default Foundation CSS package or that you've selected inline-lists from a custom package. These should be linked up following our default HTML page structure.


Build with a Mixin

We've included SCSS mixins used to style inline lists. To use the mixin, you'll need to have the extension installed or grab _variables.scss, _global.scss and _inline-lists.scss from Github and throw them into a Foundation folder in your project directory. From there, you can import the files at the top of your own SCSS stylesheet, like so:

<%= code_example ' @import "foundation/variables", "foundation/components/global", "foundation/components/inline-lists"; ', :css %>
Quick Mixin

You can build your inline lists using our global mixin by including it on your own custom class. The mixin contains all the necessary styles for positioning and styling the unordered list full of list items, the code looks like this:

<%= code_example ' .your-class-name { @include inline-list; }', :css %>
Default SCSS Variables
<%= code_example ' /* We use this to control the margins and padding of the inline list. */ $inline-list-margin-bottom: emCalc(17px) emCalc(-22px ); $inline-list-margin: 0 0; $inline-list-padding: 0; /* We use this to control the overflow of the inline list. */ $inline-list-overflow: hidden; /* We use this to control the list items */ $inline-list-display: block; /* We use this to control any elements within list items */ $inline-list-children-display: block;', :css %>

Note: emCalc(); is a function we wrote to convert px to em. It is included in _variables.scss.

<%= render "_sidebar-components.html.erb" %>