CSS styling for horizontal list with bullet only between elements

后端 未结 11 2339
刺人心
刺人心 2020-12-09 07:23

I\'m not sure how to build a horizontal list that looks like this:

\"Centered

11条回答
  •  [愿得一人]
    2020-12-09 08:07

    I just used text-indent to successfully style a bulleted list as follows:

    HTML:

    • Payment
    • Check
    • Direct Deposit

    CSS:

    ul.horizontal li { list-style-type:disc; float: left; text-indent:-4px; margin-right:16px; }
    

提交回复
热议问题