Foundation CSS Menu Nested Style 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 to 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. Foundation CSS Nested Style Menu creates the nested navigation menu. The menu items are created using <ul> and <li> elements. Foundation CSS Menu Nested Style Class: nested: This class is used to create nested navigation menu. The nested navigation menu has extra padding on the element. Syntax: <ul class="menu"> <li><a href="#">Item 1</a></li> <li> <a href="#">Item 2</a> <ul class="nested menu"> <li><a href="#">1</a></li> <li><a href="#">2</a></li> . . . </ul> </li> <li><a href="#">Item 3</a></li> . . . </ul> Example: HTML <!DOCTYPE html> <html lang="en"> <head> <title>Foundation CSS Menu Nested Style</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> <h1 style="color: green;"> GeeksforGeeks </h1> <h3>Foundation CSS Menu Nested Style</h3> <ul class="menu vertical"> <li><a href="#">GeeksforGeeks</a></li> <li><a href="#">Web Technology</a> <ul class="nested vertical menu"> <li><a href="#">HTML</a></li> <li><a href="#">CSS</a></li> <li><a href="#">JavaScript</a></li> <li><a href="#">jQuery</a></li> </ul> </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 Nested Style Reference: https://get.foundation/sites/docs/menu.html#nested-style 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 Menu Simple Style 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 Text 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 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 Active State 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 Menu Sticky Navigation Foundation CSS is an Open-source front-end framework that makes it simple and quick to build stunning, responsive websites, mobile apps, and emails. September of that year saw ZURB publish it. Many companies, including Facebook, eBay, Mozilla, Adobe, and even Disney, use it. Based on the Bootstrap f 7 min read Foundation CSS Menu Vertical 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 Like