css 鼠标经过,背景图变换,字体颜色也随之变化,怎么做
1个回答
展开全部
这个实现非常容易,你用a标签的hover伪类就可以了。
例如:
<a href='#'>标签</a>
a{
color:#000;
display:block;
width:100px;
height:100px;
background:url('a.jpg') no-repeat 0 0;
}
a:hover{
color:#red;
background-image:#ulr('b.jpg');
}
为了兼容低版本的IE6,并且不想用JS,那么你只能通过a:hover来实现。因为IE6只支持a的hover伪类。
例如:
<a href='#'>标签</a>
a{
color:#000;
display:block;
width:100px;
height:100px;
background:url('a.jpg') no-repeat 0 0;
}
a:hover{
color:#red;
background-image:#ulr('b.jpg');
}
为了兼容低版本的IE6,并且不想用JS,那么你只能通过a:hover来实现。因为IE6只支持a的hover伪类。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询