当前位置: 首页 > 工具软件 > Table Hover > 使用案例 >

bootstrap-table hover、表格边框、选中样式修改

满俊楠
2023-12-01

1.修改默认的hover颜色

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

2. 不要 表格边框

.bootstrap-table * {
        border: none !important;
  }

3.修改点击事件后选中颜色

.changeColor{
        background-color: green !important;
        color: white;
   }

 类似资料: