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>
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;
具体用法:
即可完成去除黑色点的效果!