a:链接,a:已访问,a:悬停,以及:活动无法正常工作?

时间:2013-12-29 22:29:17

标签: html css hyperlink hover

我用过:先悬停;我不知道为什么它现在不起作用。这是代码。

<style>

    body {
    margin: 0px;
    background-color: #F0F0EE;
    }

    p {
    font-family: Arial;
    color: #2B2B2B;
    font-size: 13px;

    a:link {
        font-family: Arial;
        color: #557777;
        text-decoration: none;
        border: none;
    }

    a:visited {
        font-family: Arial;
        color: #557777;
        text-decoration: none;
        border: none;
    }

    a:hover {
        font-family: Arial;
        color: #3F7F77;
        text-decoration: none;
        border: none;
    }

    a:active {
        font-family: Arial;
        color: #557777;
        text-decoration: none;
        border: none;
    }

</style>

出于某种原因,链接看起来像默认链接。 (它们是紫色的,因为我已经访问了它们并且它们被加下划线。)

1 个答案:

答案 0 :(得分:3)

您需要使用上一个p {}

关闭}选择器
p {
font-family: Arial;
color: #2B2B2B;
font-size: 13px;

}&lt; ---------

a:link {