div{
height:100px
width:100px
background-color: aqua
}
<div title="我是鼠标悬停展示的内容">文字内容文字内容</div>
.on a{color:#8B8B8Bbackground:#EFEFEF url(phone.png) no-repeat 10px -30px}加个这个就好了,因为你写了鼠标经过的时候添加了个当前样式,给当前样式下的a添加颜色。。
A标签的属性:
1、href :链接到的目标网址
2、color:超链接颜色
3、target:点击超链接后行为怎样发生
4、title:把鼠标放在超链接上,会显示title里的内容
4、font-size:超链接字体大小
在html文件中添加一个事件,就是当鼠标滑动到submit按钮上时,设置鼠标样式即可,具体例子如下:
<html>
<body>
<p>请把鼠标移动到单词上,可以看到鼠标指针发生变化:</p>
<span style="cursor:auto">
Default</span><br />
<span style="cursor:pointer">
Pointer</span><br /> <!--这个就是你需要的-->
<span style="cursor:move">
Move</span><br />
<span style="cursor:e-resize">
e-resize</span><br />
<span style="cursor:ne-resize">
ne-resize</span><br />
<span style="cursor:nw-resize">
nw-resize</span><br />
<span style="cursor:text">
text</span><br />
<span style="cursor:wait">
wait</span><br />
<span style="cursor:help">
help</span>
</body>
</html>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)