how to hide
  • bullets in navigation menu and footer links BUT show them for listing items
  • 前端 未结 7 1870
    后悔当初
    后悔当初 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:20

      I combined some of Flavio's answer to this small solution.

      .hidden-ul-bullets li {
          list-style: none;
      }
      .hidden-ul-bullets ul {
          margin-left: 0.25em; // for my purpose, a little indentation is wished
      }
      

      The decision about bullets is made at an enclosing element, typically a div. The drawback (or todo) of my solution is that the liststyle removal also applies to ordered lists.

    提交回复
    热议问题