Overriding bootstrap table-striped CSS

前端 未结 3 1908
一生所求
一生所求 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:26

    In addition to Mr. Alien's solution, I found that the following works in Bootstrap 4 without explicitly overriding the table style.

     tr.found td{
        background-color:#CECBCB;
    }
    

    Bootply Demo

提交回复
热议问题