How do I display a list horizontally?
September30
you can use the display property set to inline on the list item.
you can use the following line into your .css file to display list items horizontally
ul li{ display: inline; }
you can use the display property set to inline on the list item.
you can use the following line into your .css file to display list items horizontally
ul li{ display: inline; }