I want to be able to display a series of skill tags in a horizontal order such as JSP XML Java C# etc.
Update: Ok,I did try what the commenter suggested. It seems to be another issue.
Here are two examples of the issue with and without a thymeleaf directive.
Ok, So if I explicitly add the items in html, it behaves as I want
This gives this result. This is what I want.
But if I do it as a th:each, then each item is on a separate line
And this gives the following:
What should I change?
ANSWER: OK, found the issue. You need to put the th:each on the right element.
Note that it is on the li and not the ui. That makes it work.
then they are all printed in the same line as I want. With the thymeleaf each they explicitly go to a second line