Defines different styles for a sub navigation.
To apply this component, use the following classes. To align a subnav, for example to horizontally center it, you can use utility classes.
| Class | Description |
|---|---|
.z-subnav | Add this class to a <ul> element to define the Subnav component. Use <a> elements as nav items within the list. |
.z-active | Add this class to a list item to apply an active state. |
To add list items without a link, use a <span> element instead of an <a>. Alternatively, disable an <a> element by adding the .z-disabled class to the <li> element and remove the href attribute from the anchor to make it inaccessible through keyboard navigation.
<ul class="z-subnav">
<li class="z-active"><a href=""></a></li>
<li><a href=""></a></li>
<li><span></span></li>
</ul>There are several style modifiers available. Just add one of the following classes to apply a different look.
.z-subnav-primaryYou can use CSS variables to customize this component in any way you prefer.
You can also use a dropdown from the Dropdown component with a subnav.
<ul class="z-subnav">
<li>
<!-- This is the menu item toggling the dropdown -->
<a href=""></a>
<!-- This is the dropdown -->
<div data-z-dropdown="mode: click">
<ul class="z-dropdown-nav z-nav">
...
</ul>
</div>
</li>
</ul>