Give Clickable Elements a Pointer Cursor


/ Published in: CSS
Save to your folder(s)

Some elements that are clickable mysteriously don’t trigger a pointer cursor in browsers. This fixes that, and provides a default class “pointer” for applying it to other clickable things as needed.


Copy this code and paste it in your HTML
  1. a[href], input[type='submit'], input[type='image'], label[for], select, button, .pointer {
  2. cursor: pointer;
  3. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.