问答详情
源自:3-4 Bootstrap中的排版 - 表格

显示不了tr背景色

https://img.mukewang.com/5b90bd5c00016a0e06040241.jpg

请问一下,tr的class需要加table-才能显示出来颜色,不加就显示不出来

提问者:慕神0302425 2018-09-06 13:40

个回答

  • 慕神0302425
    2018-09-06 21:33:44

    版本问题,换了3.3.7的解决

  • 天空清晨
    2018-09-06 21:22:27

    .table-danger 是什么鬼?

  • 天空清晨
    2018-09-06 21:21:29

    必须添加 .table 类才可以,可以查看未压缩的css文件,也可以看 less 文件

    .table > thead > tr > td.success,
    .table > tbody > tr > td.success,
    .table > tfoot > tr > td.success,
    .table > thead > tr > th.success,
    .table > tbody > tr > th.success,
    .table > tfoot > tr > th.success,
    .table > thead > tr.success > td,
    .table > tbody > tr.success > td,
    .table > tfoot > tr.success > td,
    .table > thead > tr.success > th,
    .table > tbody > tr.success > th,
    .table > tfoot > tr.success > th {
      background-color: #dff0d8;
    }