bullet points from <ul>

This question already has an answer here:

  • Need an unordered list without any bullets 23 answers

  • You just want the bullets gone?

    In that case, use this CSS:

    ul.no-bullet {padding-left:0;}
    ul.no-bullet > li {list-style:none;}
    

    Set the list items to display no bullet points:

    ul li {
      display:inline-block; 
      list-style: none;
     }
    

    ..or as you already have a helper class:

    .no-bullet li {list-style: none; }
    

    在你的CSS中使用这个

    ul li  {list-style-type: none;}
    
    链接地址: http://www.djcxy.com/p/29968.html

    上一篇: 为什么我的导航栏中有黑点? (HTML / CSS)

    下一篇: 来自<ul>的项目符号点