1

我到处寻找解决方案,但没有找到任何东西..

我在 HTML5 页面中有这段代码

<div>
    <p class="title_paragraph">
    <a id="title" href="http://www.milanochamberorchestra.com">Milano Chamber Orchestra</a>
    </p>
</div>

CSS是

.title_paragraph {
    color: #f89938;
    text-align: center;
    text-shadow: 0 0 12px rgba(230,160,55,0.6);
    font-family: 'Buda', cursive;
    font-weight: 100;
    font-size: 46px;
    z-index: 0;
    position: relative;
}

#title:link {text-decoration:none;} 
#title:visited {text-decoration:none;} 
#title:hover {text-decoration:none;}   
#title:active {text-decoration:none;}  

为什么链接没有以正确的颜色显示?它必须是黄色/橙色,而不是原来的紫色!

4

2 回答 2

3

尝试这个

.title_paragraph a{
    color: #f89938;
    text-align: center;
    text-shadow: 0 0 12px rgba(230,160,55,0.6);
    font-family: 'Buda', cursive;
    font-weight: 100;
    font-size: 46px;
    z-index: 0;
    position: relative;
}

#title:link {text-decoration:none;} 
#title:visited {text-decoration:none;} 
#title:hover {text-decoration:none;}   
#title:active {text-decoration:none;}  
于 2013-05-20T14:45:53.693 回答
0

对我来说,您的浏览器似乎正在显示“已访问链接”的链接样式,因为您已经点击了该链接。您还可以通过清理浏览器缓存来验证这一点。访问过的链接选择器应该可以解决您的问题。

于 2013-05-20T14:49:41.647 回答