I need an unordered list without any bullets

后端 未结 14 1251
清酒与你
清酒与你 2020-11-22 07:16

I have created an unordered list. I feel the bullets in the unordered list are bothersome, so I want to remove them.

Is it possible to have a list without bullets?<

14条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-22 08:08

    You can remove bullets by setting the list-style-type to none on the CSS for the parent element (typically a

      ), for example:

      ul {
        list-style-type: none;
      }
      

      You might also want to add padding: 0 and margin: 0 to that if you want to remove indentation as well.

      See Listutorial for a great walkthrough of list formatting techniques.

提交回复
热议问题