foundation 5 dropdown alignment

Solutions on MaxInterview for foundation 5 dropdown alignment by the best coders in the world

showing results for - "foundation 5 dropdown alignment"
Jacobo
17 Jul 2018
1<!-- Depending on how your dropdown is structured -->
2<a
3  data-dropdown="drop1"
4  aria-controls="drop1"
5  aria-expanded="false"
6  data-options="align:left">
7  Has Dropdown
8</a>
9<!-- OR -->
10<ul
11  id="drop1"
12  class="f-dropdown drop-left"
13  data-dropdown-content aria-hidden="true"
14  tabindex="-1">
15  <li><a href="#">This is a link</a></li>
16  <li><a href="#">This is another</a></li>
17  <li><a href="#">Yet another</a></li>
18</ul>