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.
我可以使用以下方法更改单元格内容的字体大小:
.ui-jqgrid tr.jqgrow td { font-size: 1.2em; }
但这不会改变工具栏搜索框中文本的字体大小。
对应的CSS规则可以如下
.ui-jqgrid .ui-search-toolbar .ui-search-table { font-size: 1.2em; } .ui-jqgrid .ui-search-toolbar input, .ui-jqgrid .ui-search-toolbar select { font-size: 1.2em; }
第一条规则设置搜索操作和清除字符(“x”)的字体大小,第二条规则设置输入的字体大小并选择搜索工具栏的元素。