button小手设置 css的cursor

转自:https://www.cnblogs.com/sweetXiaoma/p/5871284.html

需要对元素的css属性cursor进行设置。cursor可能的值:

  1. default 默认(通常是一个箭头)
  2. auto 默认。浏览器设置的光标
  3. crosshair 十字线形状。
  4. pointer 小手形状。<button style="curosr:pointer">测试按钮</button>
  5. move 此光标指示某对象可被移动
  6. e-resize 在边框显示可被向右(东east)移动
  7. ne-resize边框可向北和东移动(north&east);
  8. nw-resize边框可向北和西移动(north&west);
  9. n-resize 边框可向北移动(north);
  10. se-resize边框可向南和东移动(south&east);
  11. sw-resize边框可向南和西移动(south&west);
  12. s-resize边框可向南移动(south);
  13. w-resize边框可向西移动(west);
  14. text指示文本
  15. wait程序忙 通常是沙漏或表
  16. help帮助 通常是问号或气球
原文地址:https://www.cnblogs.com/sharpest/p/10164302.html