A basic Bootstrap 5 table has a light padding and horizontal dividers.
The .table class adds basic styling to a table:
<table class="table">
The .table-striped class adds zebra-stripes to a table:
<table class="table table-striped">
The .table-bordered class adds borders on all sides of the table and cells:
<table class="table table-bordered">
The .table-hover class adds a hover effect (grey background color) on table rows:
<table class="table table-hover">
The .table-dark class adds a black background to the table:
<table class="table table-dark">