Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已将jqGrid的属性更改为rownumbers:true. 因此它显示行号。现在我想改变它的CSS。我怎样才能做到这一点?
rownumbers:true
在上图中,记录的 CSS 改变了,但行号的 CSS 没有改变。现在我也想更改行号的 CSS。我怎样才能做到这一点?
如果我理解您的要求正确,您可以包含以下 CSS 样式以删除background-image并background-color从 CSS 类继承ui-state-default:
background-image
background-color
ui-state-default
.jqgrow .jqgrid-rownum { background-color: transparent; background-image: none; }
以下演示还使用了您上一个问题的答案中的样式。显示的结果如下图所示: