Change cursor to hand when mouse goes over a row in table

后端 未结 11 1916
暗喜
暗喜 2020-12-22 22:59

How do I change the cursor pointer to hand when my mouse goes over a in a

11条回答
  •  时光说笑
    2020-12-23 00:02

    Use the style cursor: pointer; in the CSS for the element you want the cursor to change on.

    In your case, you would use (in your .css file):

    .sortable {
        cursor: pointer;
    }
    

提交回复
热议问题