我做错了什么:悬停?

时间:2012-07-03 03:27:36

标签: css

这是我的CSS代码无效:

h2 a:link, h2 a:visited {
text-decoration: none;
font-size:14pt;
font-weight:100;
color:#000;
}

h2 a:hover; {
text-decoration: none;
font-size:14pt;
font-weight:100;
color:#909090;
}

为什么悬停部分不起作用?我究竟做错了什么?我是CSS的新手。

3 个答案:

答案 0 :(得分:5)

更改css规则“a:hover;”到“a:悬停”

ie:删除;

答案 1 :(得分:0)

a:hover的大括号前面有分号,因此请将其更改为:

h2 a:hover {
  text-decoration: none;
  font-size:14pt;
  font-weight:100;
  color:#909090;
}

答案 2 :(得分:-1)

当你参与其中时,请结合常用规则。

h2 a:link, 
h2 a:visited,
h2 a:hover {
    text-decoration: none;
    font-size:14pt;
    font-weight:100;
}

h2 a:link, 
h2 a:visited {
    color:#000;
}

h2 a:hover; {
    color:#909090;
}