For example, I have two grids on the same page. In one I want font size 12, on the other font size 10
This code will affect the font size of both grids:
<style type=”text/css”>
.ui-jqgrid {font-size:10px;}
</style>
What is the css syntax to change the properties of only specific grid?
Thanks
1 Answers
You can assign css to top level div id. E.g. if your grid id is list1, then:
<style type=”text/css”>
div#gbox_list1 {
font-size: 110%;
}
</style>
Your Answer