在使用CSS進行列表排列時,無序列表通常會默認添加黑色圓點作為項目符號。然而,有時我們想要去掉這些圓點,讓列表更加簡潔美觀。
實現去掉無序列表黑點的方法有兩種,分別是使用CSS屬性list-style: none;
和list-style-type: none;
。
下面是使用list-style: none;
的代碼實例:
ul { list-style: none; }
上述代碼將會去除無序列表中所有項目的黑色圓點。
若想保留項目符號,但不要黑點,可以使用以下代碼:
ul { list-style-image: url(''); /* 圖片鏈接可留空 */ }
使用list-style-type: none;
的代碼實例如下:
ul { list-style-type: none; }
與list-style: none;
相同,list-style-type: none;
也會去掉無序列表中所有項目的黑點。
需要注意的是,以上CSS屬性只會影響無序列表。若想去掉有序列表的序號,需使用list-style-type: none;
。
上一篇ajax怎么設置recv
下一篇php ssl 端口