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

后端 未结 11 1920
暗喜
暗喜 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

    Using css

    table tr:hover{cursor:pointer;} /* For all tables*/
    table.sortable tr:hover{cursor:pointer;} /* only for this one*/
    

提交回复
热议问题