:hover
hover
、active
、focus
:hover
a:hover
a.class:hover
a:hover
{
color
:
yellow
;
background
:
blue
;
font-size
:
small
;
}
p:hover
{
color
:
yellow
;
background
:
blue
;
font-size
:
large
;
}
div:hover
{
color
:
red
;
background
:
lime
;
font-size
:
small
;
}
IE6、IE7(Q)、IE8(Q)浏览器不支持A元素以外的其它元素的:hover伪类,可通过上面的示例测试
CSS提供了四种伪类设置链接的颜色,包括:link、:visited、:hover、:active,它们的声明是有一定顺序的,我们将这种顺序简称为L-V-H-A,即link最先,其次visited,之后hover,最后active,如此声明才能保证hover与active状态显示正确的样式
a:link
{
color
:
red
;
}
a:visited
{
color
:
green
;
}
a:hover
{
color
:
blue
;
}
a:active
{
color
:
black
;
}
选择符 | IE6 | IE7 | IE8 | IE9 | FF | CH | OP | SA |
---|---|---|---|---|---|---|---|---|
E:hover | part | part | part | yes | yes | yes | yes | yes |
新闻热点
疑难解答