Bootstrap table striped: How do I change the stripe background colour?

后端 未结 12 1321
温柔的废话
温柔的废话 2020-12-01 02:21

With Bootstrap class table-striped, every other row in my table has a background colour equal to #F9F9F9. How can I change this colour?

12条回答
  •  攒了一身酷
    2020-12-01 02:55

    Delete table-striped Its overriding your attempts to change row color.

    Then do this In css

       tr:nth-child(odd) {
        background-color: lightskyblue;
        }
    
       tr:nth-child(even) {
        background-color: lightpink;
        }
    
        th {
           background-color: lightseagreen;
        }
    

提交回复
热议问题