这是我的 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 新手。
这是我的 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 新手。
更改 CSS 规则“a:hover;” 到“a:悬停”
即:删除 ;
在左大括号之前有一个分号a:hover
,因此将其更改为:
h2 a:hover {
text-decoration: none;
font-size:14pt;
font-weight:100;
color:#909090;
}
当你在做的时候,结合共同的规则。
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;
}