[Solved] How do I remove all of the borders from an HTML ? [closed]


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

? [closed]