I'm trying to get my menu centered using flexbox centering in the middle of the bar while the last element is pushed to the bottom of the container.
Here is my JSfiddle.
I've tried with align-self flex-end
with no success and
li:last-child {
margin-top: auto;
}
That aligns my the last element to the bottom but pushes the rest of the items to the other end of the container.