Bootstrap table without stripe / borders

后端 未结 16 881
天命终不由人
天命终不由人 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:13

    Try this:

    CSS

    .borderless {
     border:none;
    }
    

    Note: What you were doing before was not working because your css code was targeting a table within your .borderless table (which probably didn't exist)

    提交回复
    热议问题