how to hide
  • bullets in navigation menu and footer links BUT show them for listing items
  • 前端 未结 7 1892
    后悔当初
    后悔当初 2020-12-09 07:23

    I have a navigation menu, footer, and a slideshow which use listed style to list links and images. I have the css list-style:none; set to hide the bullets next

    7条回答
    •  夕颜
      夕颜 (楼主)
      2020-12-09 08:08

      when bullet have to hide then use:

      li { list-style: none;}

      when bullet have to list show, then use:

      li { list-style: initial;}

    提交回复
    热议问题