天天看點

css之去掉li标簽前面的符号

[b]css:[/b]

ul{

list-style-type: none;

}

[b]html:[/b]

<ul>

<li>cafe</li>

<li>bread</li>

<li>milk</li>

</ul>

-