Css 如何在JQGrid TreeGrid中隐藏行之间的线

Css 如何在JQGrid TreeGrid中隐藏行之间的线,css,jqgrid,Css,Jqgrid,如何隐藏JQGrid树状体之间的线 我试过: <table id="TreeGrid" style="border-bottom: 0px none;border-right: 0px none;"> </table> 但这对我不起作用。好吧,现在我想起来了: .ui-jqgrid tr.ui-row-ltr td { border-bottom-style: none; border-right-style: none;} 我仍然不确定如何仅为#Tree

如何隐藏JQGrid树状体之间的线

我试过:

<table id="TreeGrid" style="border-bottom: 0px none;border-right: 0px none;">
    </table>


但这对我不起作用。

好吧,现在我想起来了:

.ui-jqgrid tr.ui-row-ltr td { border-bottom-style: none; border-right-style: none;}
我仍然不确定如何仅为#TreeGrid指定样式

最后决定

#TreeGrid td { border-bottom-style: none; border-right-style: none;}

好吧,现在我想起来了:

.ui-jqgrid tr.ui-row-ltr td { border-bottom-style: none; border-right-style: none;}
我仍然不确定如何仅为#TreeGrid指定样式

最后决定

#TreeGrid td { border-bottom-style: none; border-right-style: none;}