LoginSignup
0
2

More than 3 years have passed since last update.

【CSS】cursor

Posted at

cursor

:sunny: 要素にカーソルが乗ったときにカーソルの形を変える

普通.gif

なにも指定しないと赤い四角にカーソルをのせても何の変化もありません。

cursor: text;

:sunny: テキスト編集カーソルになる

CSS.
cursor: text;

ezgif.com-video-to-gif.gif

テキストを入力するときに変化するローマ字の I のカーソルに変更になりました:laughing:

cursor: pointer;

:sunny: リンクカーソルになる

CSS.
cursor: pointer;

ezgif.com-video-to-gifのコピー.gif

リンクボタンを押す時の指ボタンに変更になりました:laughing:
ちなみに<a>タグはこの cursor: pointer; が初期設定されています:smile:

cursor: default;

:sunny: 標準のカーソルになる

CSS.
cursor: default;

普通.gif

初期設定されているカーソルです:sweat_smile:

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2