解决JQgrid操作底栏图标重叠问题

官方的ui.jqgrid.min.css中:

.ui-jqgrid .ui-jqgrid-pager .ui-pager-table {
	width: 100%;
	table-layout: fixed;
	height: 100%
}

修改如下:

.ui-jqgrid .ui-jqgrid-pager .ui-pager-table {
	width: 100%;
	/* table-layout: fixed; */
	height: 100%
}
发布了388 篇原创文章 · 获赞 105 · 访问量 31万+

猜你喜欢

转载自blog.csdn.net/haoranhaoshi/article/details/104147306