---
title: The Grid
description: If you're familiar with the Foundation for Sites grid, you'll be right at home working with Foundation for Emails.
+sass: scss/grid/_grid.scss
---
The grid has two core elements: the *row* and *column*. Rows define horizontal sections of content, and columns carve up the row into side-by-side sections.
--- /dev/null
+---
+title: Menu
+description: Use the menu component to create a horizontal or vertical list of links.
+sass: scss/components/_menu.scss
+---
+
+## Basics
+
+A menu is a `<table>` with a class of `.menu` and a `<tr>` inside of it. Each link in the menu is a `<td>` with an `<a>` inside of it.
+
+In Inky HTML, use the tag `<menu>` to make a menu, and the tag `<item>` to make an item.
+
+```inky
+<menu>
+ <item href="http://zurb.com">Item</item>
+ <item href="http://zurb.com">Item</item>
+ <item href="http://zurb.com">Item</item>
+</menu>
+```
+
+---
+
+## Simple Menu
+
+Menu items have padding around them, which in some situations will misalign your link text with another element of your design. To strip the padding from menu items, add the class `.simple` to the menu. There will still be some horizontal space between them, to space them out.
+
+```inky
+<menu class="simple">
+ <item href="http://zurb.com">Item</item>
+ <item href="http://zurb.com">Item</item>
+ <item href="http://zurb.com">Item</item>
+</menu>
+```
+
+---
+
+## Vertical Menu
+
+Menus align horizontally by default. To switch to a vertical menu, add the class `.vertical` to the menu.
+
+```inky
+<menu class="vertical">
+ <item href="http://zurb.com">Item</item>
+ <item href="http://zurb.com">Item</item>
+ <item href="http://zurb.com">Item</item>
+</menu>
+```