博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CSS表单3 光标样式 (每个位置鼠标放上去的样式不同)
阅读量:5208 次
发布时间:2019-06-14

本文共 868 字,大约阅读时间需要 2 分钟。

<!DOCTYPE html>
<
html
>
    
<
head
>
        
<
title
>单选按钮对齐</
title
>
        
<
style
type
=
"text/css"
>
            
a{display:block}
            
a.aut{cursor:auto}
            
a.crosshair{cursor:crosshair}
            
a.default{cursor:default}
            
a.pointer{cursor:pointer}
            
a.move{cursor:move}
            
a.text{cursor:text}
            
a.wait{cursor:wait}
            
a.help{cursor:help}
        
</
style
>     
    
</
head
>
    
<
body
>
    
<
h1
>软件开发,成就梦想</
h1
>
    
<
h2
>学编程,上利永贞网 </
h2
    
<
a
class
=
"auto"
>auto</
a
>
    
<
a
class
=
"crosshair"
>crosshair</
a
>
    
<
a
class
=
"default"
>default</
a
>
    
<
a
class
=
"pointer"
>pointer</
a
>
    
<
a
class
=
"move"
>move</
a
>
    
<
a
class
=
"text"
>text</
a
>
    
<
a
class
=
"wait"
>wait</
a
>
    
<
a
class
=
"help"
>help</
a
>
    
</
body
>
</
html
>
 

cursor 属性有不同的值,这些值让光标显示不同的形状。

常见的形状有:

属性值 说明
default 默认光标,通常是一个箭头
auto 浏览器自动识别的光标
crosshair 十字线
pointer 手型指针
move 移动指针
text 文本指针
wait 指示程序正忙
col-resize 双向移动
help 帮助指针

转载于:https://www.cnblogs.com/lszw/p/10722567.html

你可能感兴趣的文章
form表单中method的get和post区别
查看>>
【做题】arc068_f-Solitaire——糊结论
查看>>
Poj 1094 拓扑排序 水题
查看>>
Oracle SQL查询,日期过滤条件要注意的一点
查看>>
链表快排
查看>>
链表操作合集
查看>>
leetcode852 C++ 20ms 找最高峰 序列先增后减
查看>>
JavaScript深入系列(一)--原型和原型链详解
查看>>
一点感想
查看>>
产生随机数
查看>>
vm center(VC)5.1登陆密码忘记了怎么办?
查看>>
TFS 2015 敏捷开发实践 – 看板的使用
查看>>
UINavigationController的简单使用
查看>>
Python命名规范
查看>>
50款漂亮的国外婚礼邀请函设计(上篇)
查看>>
MD5加密简单算法
查看>>
安装Qcreator2.5 + Qt4.8.2 + MinGW_gcc_4.4 (win7环境)
查看>>
代码检查
查看>>
滚动条
查看>>
程序员的自我修养九Windows下的动态链接
查看>>