I need an unordered list without any bullets

后端 未结 14 1505
清酒与你
清酒与你 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 07:50

    If you are developing an existing theme, it's possible that the theme has a custom list style.

    So if you cant't change the list style using list-style: none; in ul or li tags, first check with !important, because maybe some other line of style is overwriting your style. If !important fixed it, you should find a more specific selector and clear out the !important.

    li {
        list-style: none !important;
    }
    

    If it's not the case, then check the li:before. If it contains the content, then do:

    li:before {
        display: none;
    }
    

提交回复
热议问题