How to make jqgrid treegrid first row text bold

前端 未结 2 1032
情歌与酒
情歌与酒 2021-01-21 10:33

jqgrid treegrid is defined using code below. First level of data contains only single node displayed in first row in jqgrid. How to make this (treegrid first row) text bold ?

2条回答
  •  旧时难觅i
    2021-01-21 11:10

    #tree-grid .cell-wrapper:first-child
    {
        font-weight: bold;
    }
    

    You just have to skope the 'first-child' of your .css declaration.

提交回复
热议问题