我想要完成的是在我的导航菜单栏上单击时为实线创建一个功能。我曾尝试使用此代码:
div.menu ul li a:active
{
text-decoration:none !important;
background-color: white;
color: #999999;
text-decoration:none !important;
border-bottom: thick outset White;
}
div.menu ul li a:visited
{
display: inline;
line-height: 13.6px;
padding: 4px 20px;
white-space: nowrap;
text-decoration:none !important;
border-bottom: thick outset White !important;
}
它适用于我的悬停:
div.menu ul li a:hover
{
color: White;
text-decoration:none !important;
border-bottom: thick outset White;
}
所以很可能是浏览器的问题。有没有人有办法解决吗?一个例子会很好。