I need an unordered list without any bullets

后端 未结 14 1512
清酒与你
清酒与你 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:54

    To completely remove the ul default style:

        list-style-type: none;
    
        margin: 0;
        margin-block-start: 0;
        margin-block-end: 0;
        margin-inline-start: 0;
        margin-inline-end: 0;
        padding-inline-start: 0;
    

提交回复
热议问题