What is default list styling (CSS)?

后端 未结 7 1861
挽巷
挽巷 2020-12-12 20:16

On my website I use reset.css. It adds exactly this to list styles:

ol, ul {
    list-style: none outside none;
}
html, body, div, span, applet, object, ifra         


        
7条回答
  •  情深已故
    2020-12-12 20:35

    I think this is actually what you're looking for:

    .my_container ul
    {
        list-style: initial;
        margin: initial;
        padding: 0 0 0 40px;
    }
    
    .my_container li
    {
        display: list-item;
    }
    

提交回复
热议问题