Overriding bootstrap table-striped CSS

前端 未结 3 1941
一生所求
一生所求 2021-02-05 11:57

I am trying to change the background-color of rows that contain my found class in a striped bootstrap table. It works for even rows because bootstrap doesn\'t have

3条回答
  •  天涯浪人
    2021-02-05 12:20

    .table-striped>tbody>tr:nth-child(odd)>td,
    tr.found{
        background-color:#CECBCB;
    }
    

提交回复
热议问题