Search code examples
htmlalignmenthtml-lists

Center horizontal list (li) element on multiple lines


I have a list of item that must be cetered as a text, but if the line is not fully fill those element are place at the very left of the last ligne.

Ex:

item1 item2 item3
item4 item5

What I whanted is more something like

item1 item2 item3
   item4  item5

Solution

  • Set their CSS property

    display: inline;
    

    and their container

    text-align: center;