All clickable elements should have a pointer cursor

CyberAP

Well-known member
It's strange that some clickable elements have pointer cursor and some not. For example all buttons have it but none of the radio buttons or checkboxes do. You should be informed somehow that element can be clicked and the most common way is applying a pointer cursor.
This can be solved easily:

Code:
label,
input[type=radio],
input[type=checkbox]
{
  cursor: pointer;
}
 
Upvote 3
Top Bottom