Can I center a
    with left-aligned
  • s?

前端 未结 4 951
被撕碎了的回忆
被撕碎了的回忆 2020-12-09 02:33

I\'d like to center a list of left-aligned items.

This is what I currently have:



        
4条回答
  •  情歌与酒
    2020-12-09 03:11

    You can probably adopt my previous answer. Inline-block for IE, display:table for modern browsers. Might need to explicitly specify a list-style-type.

    Edit: Since this is a list, may be able to get away with inline-block on the ul and not display:table. You need to declare in a separate rule, display:inline; after inline-block for IE.

提交回复
热议问题