本文介绍了如何改变jqGrid的字体大小?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
它已经运行ui-lightness。如何更改网格内的字体大小?
It is already running with the ui-lightness. How do I change the font size inside the grid?
请指教。
谢谢。 >
Thank you.
推荐答案
在。
基本上你可以做什么Mano建议和直接修改css文件,或者你可以创建自己的内联样式,如果你需要更多的灵活性。例如:
Essentially you can do what Mano suggests and modify the css file directly, or you can create your own in-line style if you need more flexibility. For example:
.ui-jqgrid {font-size:0.8em}
如果您创建了内联样式,您可能需要更具体地选择网格行:
If you do create an inline style you may need to make it more specific to pick up grid rows:
.ui-jqgrid tr.jqgrow td {font-size:0.8em}
这篇关于如何改变jqGrid的字体大小?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!