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, 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 Vertical Menu is used to create vertically oriented navigation menu. The menu items are created using <ul> and <li> elements.
Foundation CSS Menu Vertical Menu Class:
- vertical: This class is used to created vertically oriented navigation menu. This class is used with menu class inside <ul> element.
- vertical align-right: This class is used to create vertically oriented navigation menu with right aligned. This class is used with menu class inside <ul> element.
- vertical align-center: This class is used to create vertically oriented navigation menu with center aligned. This class is used with menu class inside <ul> element.
Syntax:
<ul class="menu vertical"> <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 Vertical Menu</ title > <!-- Compressed CSS --> < link rel = "stylesheet" href = crossorigin = "anonymous" > <!-- Compressed JavaScript --> < script src = crossorigin = "anonymous" ></ script > </ head > < body > < h1 style = "color: green;" > GeeksforGeeks </ h1 > < h3 >Foundation CSS Menu Vertical Menu</ h3 > < ul class = "menu vertical" > < 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 Vertical Menu
Reference: https://get.foundation/sites/docs/menu.html#vertical-menu
Please Login to comment...