ホームページ >ウェブフロントエンド >CSSチュートリアル >CSS カーソルのプロパティ
CSS の cursor プロパティを使用すると、ユーザーに表示するカーソルの種類を指定できます。
<html> <head> </head> <body> <p>Move the mouse over the words and see the changes in cursor:</p> <div style = "cursor:auto">Auto</div> <div style = "cursor:crosshair">Crosshair</div> <div style = "cursor:default">Default</div> </body> </html>
以上がCSS カーソルのプロパティの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。