No borders on bootstrap table (Example) - Coderwall
coderwall.com › p › hfurcaSep 29, 2021 · I needed a borderless table, while using a bootstrap table. Bootstrap by default keeps only row borders, to distiguish one row from the other. I wanted to remove those. You can just add this to your css: .table-borderless td, .table-borderless th { border: 0; } and use a bootstrap table just the way you would, adding the table-borderless class ...
No borders on bootstrap table (Example) - Coderwall
https://coderwall.com/p/hfurca29.09.2021 · The bootstrap selector seems to be .table th, .table td. If you include your stylesheet after bootstrap, you should be able to just use your code without the need for !important. If you include it before, you should still be able to just apply a more specific selector, e.g. table.table-borderless th, table.table-borderless td or .table.table-borderless th, .table.table-borderless td …