在css中,可以利用「list-style」屬性來去除無序列表前的點,該屬性用來設定列表的樣式,當屬性的值為「none」時,就會去掉列表前的點,語法為「ul{list-style:none;}」。
本教學操作環境:windows10系統、CSS3&&HTML5版、Dell G3電腦。
css怎麼將無序列表前的點去掉
#在css中,可以利用list-style屬性去掉無序列表前的點,該屬性用來設定清單的屬性樣式,當屬性的值為none時你就會去掉無序列表前的點。
範例如下:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> <style> ul li{ list-style:none; } </style> </head> <body> <p>无序列表:</p> <ul> <li>雪碧</li> <li>可乐</li> <li>凉茶</li> </ul> </body> </html>
輸出結果:
#有興趣繼續點擊css影片教學學習。
以上是css怎麼將無序列表前的點去掉的詳細內容。更多資訊請關注PHP中文網其他相關文章!