I am working on a horizontal navigation bar that consists of a UL list with LI elements for each menu item. The CSS properties display:flex
and justify-content:space-evenly
are being utilized.
The challenge I am facing is setting the width of the UL element to be equal to its container without knowing the number of items in advance.
Is there a way, using only pure CSS and without modifying the HTML, to position bullets precisely in the middle of the space between items?