-3

这是我的 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 新手。

4

3 回答 3

5

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

即:删除 ;

于 2012-07-03T03:28:58.337 回答
0

在左大括号之前有一个分号a:hover,因此将其更改为:

h2 a:hover {
  text-decoration: none;
  font-size:14pt;
  font-weight:100;
  color:#909090;
}
于 2012-07-03T03:30:04.757 回答
-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;
}
于 2012-07-03T04:09:45.927 回答