I'm looking for a list of all tags for which the pointer cursor is default for Chrome
Any idea?
Thanks
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'.
Except 'input' and 'a' tags, all tags will have default cursor only.
For Input : Text For 'A' tag : hand
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)
* { cursor: pointer !important; }in your CSS...