去除无序列表前面黑色的点是怎么弄的?
看透不说透
看透不说透 2016-12-26 14:56:13
0
2
2877
看透不说透
看透不说透

reply all(2)
数据分析师

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.

迷茫

这个我们要使用 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>
即可完成去除黑色点的效果!
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!