📜  如何隐藏项目符号列表css代码示例

📅  最后修改于: 2022-03-11 14:47:25.834000             🧑  作者: Mango

代码示例1
/* do this in CSS  to hide the bullets from ul list*/

ul {
    list-style: none;
}