Foundation CSS Menu Item Alignment Last Updated : 30 Jan, 2022 Summarize Comments Improve Suggest changes Share Like Article Like Report Foundation CSS is an open-source & responsive front-end framework built by ZURB foundation in September 2011, that makes it easy to design beautiful responsive websites, apps, and emails that look amazing & can be accessible to any device. It is used by many companies such as Facebook, eBay, Mozilla, Adobe, and even Disney. The framework is built on Saas-like bootstrap. It is more sophisticated, flexible, and easily customizable. It also comes with CLI, so it’s easy to use it with module bundlers. It offers the Fastclick.js tool for faster rendering on mobile devices. Menus are the main tools for visitors to navigate throughout a website. In Menu Item Alignment Navigation section, By default, each item of navigation menu are left aligned. To make the navigation menu right align, we will use align-right class. Foundation CSS Menu Item Alignment Class: align-left: This class is used to align the navigation menu to left side. This class is used with menu class inside <ul> element. It can be used only when the navigation menu are placed in right-to-left environment.align-right: This class is used to align the navigation menu to right side. This class is used with menu class inside <ul> element.align-center: This class is used to align the navigation menu to center. This class is used with menu class inside <ul> element.expanded: This class is used to place the menu items using even amount of space. This class is used with menu class inside <ul> element. Syntax: <ul class="menu align-right"> <li><a href="#">Item 1</a></li> <li><a href="#">Item 2</a></li> . . . </ul> Example: HTML <!DOCTYPE html> <html lang="en"> <head> <title>Foundation CSS Menu Item Alignment</title> <!-- Compressed CSS --> <link rel="stylesheet" href= "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/foundation.min.css" crossorigin="anonymous"> <!-- Compressed JavaScript --> <script src= "https://cdn.jsdelivr.net/npm/[email protected]/dist/js/foundation.min.js" crossorigin="anonymous"></script> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h3>Foundation CSS Menu Item Alignment</h3> </center> <ul class="menu align-center"> <li><a href="#">GeeksforGeeks</a></li> <li><a href="#">Web Technology</a></li> <li><a href="#">Data Structure</a></li> <li><a href="#">Programming</a></li> <li><a href="#">Algorithm</a></li> </ul> </body> </html> Output: Foundation CSS Menu Item Alignment Reference: https://get.foundation/sites/docs/menu.html#item-alignment Comment More infoAdvertise with us Next Article Foundation CSS Menu V vkash8574 Follow Improve Article Tags : Web Technologies CSS Foundation Foundation-Navigation Similar Reads Foundation CSS Media Object Section Alignment Foundation CSS is an open-source and responsive front-end framework created by ZURB in September 2011 that makes it simple to create stunning responsive websites, apps, and emails that operate on any device. Many companies, like Facebook, eBay, Mozilla, Adobe, and even Disney, use it. The framework 4 min read Foundation CSS Basic Menu Introduction:- Foundation CSS is an open-source & responsive front-end framework built by ZURB foundation in September 2011, that makes it easy to design beautiful responsive websites, apps, and emails that look amazing & can be accessible to any device. It is used by many companies such as 2 min read Foundation CSS Accordion Menu Foundation CSS Accordion Menu is used to convert the basic vertical menu into an expandable accordion menu. To convert the menu into an accordion menu the data-accordion-menu attribute is used. In this article, we will discuss Foundation CSS Accordion Menu. Foundation CSS Accordion Menu Class:accord 2 min read Foundation CSS Menu Foundation CSS is an open-source & responsive front-end framework built by ZURB foundation in September 2011, that makes it easy to design beautiful responsive websites, apps, and emails that look amazing & can be accessible to any device. It is used by many companies such as Facebook, eBay, 2 min read Foundation CSS Menu Icons Foundation CSS is an open-source and responsive front-end framework built by ZURB foundation in September 2011, that makes it easy to design beautiful responsive websites, apps, and emails that look amazing and can be accessible to any device. It is used by many companies such as Facebook, eBay, Moz 3 min read Foundation CSS Kitchen Sink Accordion Menu Foundation CSS is the free, open-source front-end CSS framework used to build beautiful, responsive websites, applications, and emails that work on any type of device. It is written using HTML, CSS, and Javascript. It is used by many companies like Amazon, Facebook, Disney, etc. It uses Saas compile 2 min read Like