链接颜色卡在活动状态(蓝色)

时间:2011-09-30 17:18:25

标签: css html hyperlink

日冰,

我在同一个div中有三个链接有问题...丑陋的默认蓝色链接颜色阻止指定的字体颜色接管

网址:http://nicejob.is/clients/pizzahollin/www/menu.htm

任何帮助都会很好 - 通常它只是一个错字但我已经尝试了一切

2 个答案:

答案 0 :(得分:1)

至少从我所看到的,你没有为a设置任何默认值,这就是浏览器处理它的原因。

如果你期望这样,那么是的,你在main.css中有一个拼写错误

.font-filer a { color:#997f62; } 

需要

.font-filter a { color:#997f62; } 

答案 1 :(得分:0)

您可以在周围的p上设置字体颜色,但不能在a本身上设置字体颜色。尝试明确设置链接的颜色。

<!-- In the stylesheet, you set explicit color for p -->
<p class="font-filter"> 
    <!-- and not for a, so it's using default -->
    <a title="most-popular" href="#most-popular"> 
        <cufon class="cufon cufon-canvas" alt="Vinsælustu" style="width: 145px; height: 34px;">
            <canvas width="158" height="36" style="width: 158px; height: 36px; top: -2px; left: -1px;"></canvas>
            <cufontext>Vinsælustu</cufontext>
        </cufon>
    </a>
</p>