Bootstrap is adding a top border to all td
elements in .table
containers.
Adding ! important
to your no-borders rule will override that:
td {
border: none !important;
}
solved How do I remove all of the borders from an HTML
Bootstrap is adding a top border to all td
elements in .table
containers.
Adding ! important
to your no-borders rule will override that:
td {
border: none !important;
}
solved How do I remove all of the borders from an HTML