How do I center list items inside a UL element?

后端 未结 12 2528
旧时难觅i
旧时难觅i 2020-11-29 23:12

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

12条回答
  •  生来不讨喜
    2020-11-29 23:31

    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/

提交回复
热议问题