How do I change the hover over color for a hover over table in Bootstrap?

前端 未结 11 1927
情歌与酒
情歌与酒 2021-01-30 02:58

I have a table with class \'table-hover\'. The default hover over color is a white / light grey. How do I change this color?

I\'ve tried overwriting the default by ad

11条回答
  •  一个人的身影
    2021-01-30 03:21

    Give this a try:

    .table-hover tbody tr:hover td, .table-hover tbody tr:hover th {
      background-color: #color;
    }
    

提交回复
热议问题