What I want to achieve is the following:
| foo bar baz bam |
i.e. having the first element of a list floating to left and consecutive elements in that list aligned to the right. I've attached of snippet of my attempt, which doesn't quite yield what I need.
ul li {
display: inline;
float: right;
margin-right: 3vw;
margin-bottom: 5vh;
}
<ul>
<li>foo</li>
<li>bar</li>
<li>baz</li>
<li>bam</li>
</ul>