垂直菜单文字装饰不起作用

时间:2015-03-16 04:22:44

标签: html css

在多级垂直菜单中遇到问题,

Text-Decoration:none; 

Demo 不工作显示Unorder list Circle 如何解决这个问题

2 个答案:

答案 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;
}

希望它会对你有所帮助。