0

I'm looking for a list of all tags for which the pointer cursor is default for Chrome

Any idea?

Thanks

1
  • I don't know, but out of curiosity what is it for? I suppose it doesn't matter to most people since you could style every element to have a pointer using * { cursor: pointer !important; } in your CSS... Commented May 26, 2012 at 18:43

3 Answers 3

1

Ultimately it's going to depend on the browser.

For instance an 'a' tag in IE uses the default cursor, whereas webkit will change it to 'pointer'.

Sign up to request clarification or add additional context in comments.

1 Comment

Not sure what you're trying to do - but ultimately I would use a reset if this is a code issue.
1

Except 'input' and 'a' tags, all tags will have default cursor only.

For Input : Text For 'A' tag : hand

1 Comment

I actually found that the input type="image" has the pointer cursor as default
0

Old question, but according to this excellent related answer you can find the default stylesheet for the Blink renderer used in Chrome here. The elements having cursor: pointer; are only a, area and two input fields, the exact definitions being:

input[type="password" i]::-internal-reveal:focus
input[type="image" i]
area:-webkit-any-link
a:-webkit-any-link

(I would have also expected button and input[type=submit] but a quick test seems to indicate they really show the default cursor)

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.