Basic Table

A basic Bootstrap 5 table has a light padding and horizontal dividers.

The .table class adds basic styling to a table:

<table class="table">

Striped Rows

The .table-striped class adds zebra-stripes to a table:

<table class="table table-striped">

Bordered Table

The .table-bordered class adds borders on all sides of the table and cells:

  <table class="table table-bordered">

Hover Rows

The .table-hover class adds a hover effect (grey background color) on table rows:

  <table class="table table-hover">

Black/Dark Table

The .table-dark class adds a black background to the table:

  <table class="table table-dark">