更改桌面上的鼠标光标,但不是更改

时间:2016-07-25 12:59:19

标签: html css

我搜索的方法是在行上更改鼠标光标,但不在其中一个标题上更改

我创建了一个例子

http://jsfiddle.net/9xckcuze/

table{
    cursor: pointer;
}

2 个答案:

答案 0 :(得分:7)

th代码添加css:

table{
    cursor: pointer;
}
table th{
  cursor:default;
}

答案 1 :(得分:1)

BindingAdapter