What is default list styling (CSS)?

后端 未结 7 1830
挽巷
挽巷 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:56

    You're resetting the margin on all elements in the second css block. Default margin is 40px - this should solve the problem:

    .my_container ul {list-style:disc outside none; margin-left:40px;}
    
    0 讨论(0)
提交回复
热议问题