Blog Building 101

How to make a blog network

Sunday, January 27, 2013

CSS 101: Cursor control

Want to determine what the cursor will look like when you hoover over a link?

  • The default cursor:
cursor: auto
  • Gun-style cross:
cursor: crosshair
  • No change:
cursor: default
  • The normal link-hand:
cursor: pointer; cursor: hand
  • The hourglass:
cursor: wait
  • The text-selecting I-beam:
cursor: text
  • An arrow with a question-mark:
cursor: help
  • Cross-hair with arrows on the ends:
cursor: move