How do I center list items inside a ul without using extra divs or elements. I have the following. I thought text-align:center would do the trick. I can\'t seem
text-align:center
Another way to do this:
One Two Three ul { width: auto; display: table; margin-left: auto; margin-right: auto; } ul li { float: left; list-style: none; margin-right: 1rem; }
http://jsfiddle.net/f6qgf24m/