I am trying to align a li
element at the bottom of a ul
list.
+------+
| li1 |
| li2 |
| li3 |
| |
| |
| |
| li4 |
+------+
Any suggestions on how to achieve this?
MY ATTEMPTED SOLUTION:
li4 {
position: fixed;
bottom: 0;
}
While this did move the li4
to the bottom, it posed a new issue. The ul
is within a hidden menu, so even when the menu is closed, li4
remains visible due to the position: fixed
property.