来自<ul>的项目符号点
这个问题在这里已经有了答案:
你只是想让子弹走了?
在这种情况下,使用这个CSS:
ul.no-bullet {padding-left:0;}
ul.no-bullet > li {list-style:none;}
将列表项目设置为不显示项目符号点:
ul li {
display:inline-block;
list-style: none;
}
..或者你已经有一个帮手类:
.no-bullet li {list-style: none; }
在你的CSS中使用这个
ul li {list-style-type: none;}
链接地址: http://www.djcxy.com/p/29967.html