search

Home  >  Q&A  >  body text

去除无序列表前面黑色的点是怎么弄的?

看透不说透看透不说透2950 days ago2938

reply all(2)I'll reply

  • 数据分析师

    数据分析师2017-09-30 23:46:49

    How to remove the black dots in front of the unordered list? -PHP Chinese website Q&A-How to remove the black dots in front of the unordered list? -PHP Chinese website Q&A

    Please watch and learn.

    reply
    0
  • 迷茫

    迷茫2016-12-26 14:58:20

    这个我们要使用 list-style:none;

    具体用法:

    <!DOCTYPE html>
    <html>
    <head>
        <meta charset="utf-8">
        <title></title>  
        <style type="text/css">
            li{
                list-style:none;
            }
        </style>    
    </head>
    <body>
        <ul>
            <li>php中文网</li>
            <li>php中文网</li>
            <li>php中文网</li>
        </ul>
    </body>
    </html>
    即可完成去除黑色点的效果!

    reply
    1
  • Cancelreply