答案 0 :(得分:0)
在您的代码中添加此内容: Demo
ul{
list-style-type:none;
padding:0;
margin:0;
}
ul > li a{
text-decoration: none !important;
}
答案 1 :(得分:0)
使用list-style-type: none;
。它将删除您的无序列表圈。
ul{
list-style-type: none;
}
希望它会对你有所帮助。