我无法阻止下划线显示在我的菜单中(左侧的巨大蓝色块)。
http://jades-world.com/schoolassign/
有人可以指出我是否遗漏了什么吗?我不确定我做错了什么。
使用,
.topmenu a, .topmenu a:visited, .submenu a, .submenu a:visited {
text-decoration: none;
}
您可以随时尝试Firebug,这是前端Web开发人员最有用的工具。
在你的基础上.css文件,
.topmenu a, .topmenu a:visited {
color: #0A95C5;
text-decoration: none;
outline: 0;
}
试试这个
nav a {
text-decoration: none!important;
}
在您提到的链接中,只有
nav a:hover, nav a:visited {
color: #FFF;
text-decoration: none!important;
}