Bootstrap table without stripe / borders

后端 未结 16 878
天命终不由人
天命终不由人 2020-12-12 11:54

I\'m kinda stuck with a CSS problem while using Bootstrap. I\'m also using Angular JS with Angular UI.bootstrap (which might be part of the problem).

I\'m making a w

16条回答
  •  执笔经年
    2020-12-12 12:10

    Most examples seem to be too specific and/or bloated.

    Here was my trimmed down solution using Bootstrap 4.0.0 (4.1 includes .table-borderless but still alpha)...

    .table-borderless th{border:0;}
    .table-borderless td{border:0;}
    

    Similar to many proposed solutions, but minimal bytes

提交回复
热议问题