如何去除ul-il前面的小黑点

一共有三种方式;

1、

ul li{
list-style: none;
}
或者
ul li{
list-style-type: none;
}

2.在页面部分添加:

 <style type="text/css">  
 list-style: none;  
 </style> 

 3.在HTML标签中添加:

<ul style="list-style-type: none>  
  <li><a herf="#">CSDN</a>  
  </li>  
< /ul> 

以上三种方式分别为外联式,嵌入式,以及内联式,优先级由低到高,按需选择。

除了实心圆点,list-style-type还有其他样式:

none不使用项目符号
disc实心圆,默认值
circle空心圆
square实心方块
decimal阿拉伯数字
lower-roman小写罗马数字
upper-roman大写罗马数字
lower-alpha小写英文字母
upper-alpha大写英文字母

猜你喜欢

转载自blog.csdn.net/tianxianghuiwei/article/details/133772642
今日推荐