cursor
- move
- help
- wait
- pointer など
サンプル
1 2 3 4 5 6 7 8 9 |
<style> #hello { width: 200px; height: 200px; background-color: yellow; border: solid 1px blue; } </style> <div id="hello">Hello</div> |
1 2 3 |
<style> #hello { cursor: move; } </style> |
1 2 3 |
<style> #hello { cursor: help; } </style> |
1 2 3 |
<style> #hello { cursor: wait; } </style> |
1 2 3 |
<style> #hello { cursor: pointer; } </style> |
参考サイト
cursor-スタイルシートリファレンス
http://www.htmq.com/style/cursor.shtml