How do you create a table with dark style using Bootstrap?

Experience Level: Junior
Tags: Bootstrap 4

Answer

In order to create a table with dark style, use standard html tags <table>, <tr>, <th> and <td>. Then add a class table table-dark to the <table> tag.

Dark Bootstrap table
<table class="table table-dark">
  <tr>
    <th>ID</th>
	<th>Name</th>
  </tr>
  <tr>
    <td>11</td>
    <td>Peter</td>
  </tr>
  <tr>
    <td>12</td>
    <td>Jane</td>
  </tr>
</table>

Comments

No Comments Yet.
Be the first to tell us what you think.
Bootstrap for beginners
Bootstrap for beginners

Are you learning Bootstrap ? Try our test we designed to help you progress faster.

Test yourself