How to get the cursor to change to the hand when hovering a <button> tag

前端 未结 4 1999
小鲜肉
小鲜肉 2021-02-02 05:09

When viewing my site, the cursor only changes to the gloved hand for tags, not

4条回答
  •  离开以前
    2021-02-02 05:34

    Just add this style:

    cursor: pointer;
    

    The reason it's not happening by default is because most browsers reserve the pointer for links only (and maybe a couple other things I'm forgetting, but typically not

提交回复
热议问题