SOLVED: Align inline items in list element

This is an add-on to the topic How to inline the list element using CSS

I can create an inline list using timmse’s suggestion of

root ul {
display: flex;
}

But I can’t for the life of me get the list to align to the right! I’ve tried text-align right on all relevant text, as well as align-items: flex-end on all relevant contains (as well as the ul displayed as flex) - no luck. Any thoughts?

Hi Mick,
maybe this works?

root ul {
  display: flex;
  justify-content: flex-end;
}

So easy when you know how! :grinning_face_with_smiling_eyes: :pray:
Thank you!