As an addition to joshnh answer, if anyone has the same issue:
Watch out: text-align: justify;
needs a space after every display: inline-block;
element to work. Otherwise the elements are treated as one word and will not distribute horizontally.
So this won't work:
But this will:
- Item 1
-
- Item 2
-
- Item 3
-
- Item 4
-
I just had this issue because we are minifying our HTML-Markup and the minifier puts everything in one line.