0

我在下面有这个CSS。一旦我单击链接,我的这个 css 的单击链接如何被其他 css 覆盖。它将链接颜色变为红色。我试图在下面的代码中保持白色,但这没有帮助。我该怎么做才能让它工作

.grey {
    background-color:#545154;
    -moz-border-radius:6px;
    -webkit-border-radius:6px;
    border-radius:6px;
    border:1px solid #120c12;
    display:inline-block;
    color:#ffffff;
    font-family:arial;
    font-size:15px;
    font-weight:bold;
    padding:6px 24px;
    text-decoration:none;
}.grey:hover {
    background-color:#a8a5a8;
}.grey:active {
    position:relative;
    top:1px;
}

 .grey a:visited{
  color:white !important;
  }
 .grey a:link{
  color:white !important;;
  }

html

<a href="www.site.com" class="grey" style="color:white;">Site</a>
4

1 回答 1

1

白色的选择器关闭。应该是.grey:visiteda.grey:visited

于 2012-08-28T23:12:05.230 回答