Aligning to bottom of List Item using Flexbox
Aligning <span> to bottom of List Item using Flexbox I have a horizontal list for navigation items, and each navigation item can have a "small text" area and a "large" text area, using <span> tags. So for example, the end result should look like this: <span> Notice the last navigation item has no "small text" section, and it aligns with the bottom areas of the navigation. Currently, my code looks like this: navigation.scss .nav { align-items: center; display: flex; height: 100%; margin-left: 5em; ul { display: flex; flex-direction: row; margin-top: auto; li { cursor: pointer; display: flex; flex-direction: column; height: 65px; list-style: none; margin: .25em; margin-bottom: auto; padding: .65em 1.5em 1.5em 1.5em; position: relative; text-align: left; whi...
