Bootstrap Components

Bootstrap Table

Overview

Tables are presented in most applications (web, desktop or mobile application) and they are a key element in presenting data to the end user.

Today, with the importance that the user interface has, knowing how to enhance the appearance of a table becomes as relevant as it is. In this scenario, one of the technologies that has become reference is Bootstrap. This front-end framework, among many other features, provides a number of features for styling and optimizing the display of various components, such as table.

Main table in Bootstrap

To style a table with Bootstrap, simply add the table class to the <table> tag, and some visual formatting will already be applied, as displayed on the screenshot .

Bootstrap basic table
<table class="table">
  <thead>
    <tr>
      <th>#</th>
      <th>First Name</th>
      <th>Last Name</th>
      <th>Username</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <th scope="row">1</th>
      <td>Mark</td>
      <td>Otto</td>
      <td>@mdo</td>
    </tr>
    <tr>
      <th scope="row">2</th>
      <td>Jacob</td>
      <td>Thornton</td>
      <td>@fat</td>
    </tr>
    <tr>
      <th scope="row">3</th>
      <td>Larry</td>
      <td>the Bird</td>
      <td>@twitter</td>
    </tr>
  </tbody>
</table>

Inverse tables.

Among the latest tables in Bootsrap 4 is the inverse tables. Class .table-inverse can easily change the coloration of the table.

Bootstrap inverse table
<table class="table table-inverse">
  <thead>
    <tr>
      <th>#</th>
      <th>First Name</th>
      <th>Last Name</th>
      <th>Username</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <th scope="row">1</th>
      <td>Mark</td>
      <td>Otto</td>
      <td>@mdo</td>
    </tr>
    <tr>
      <th scope="row">2</th>
      <td>Jacob</td>
      <td>Thornton</td>
      <td>@fat</td>
    </tr>
    <tr>
      <th scope="row">3</th>
      <td>Larry</td>
      <td>the Bird</td>
      <td>@twitter</td>
    </tr>
  </tbody>
</table>

Additional classes

There are also some classes that allow you to apply a different styles to a table, they are::

<table class="table-striped"> Toggles the color of table rows

<table class="table-bordered"> Adds border to the table;

<table class="table-hover"> Activates the highlight of a line when we hover the mouse cursor over it;

<table class="table-condensed"> Reduces the height of table rows, making it more compact.

To apply these styles, simply add the desired classes to the <table>: <table class="table table-striped table-bordered table-condensed table-hover">

Table head opportunities

Much like default and inverse tables, run one of two modifier classes to make <thead> appear dark or light gray.

Bootstrap table head options
<table class="table">
  <thead class="thead-inverse">
    <tr>
      <th>#</th>
      <th>First Name</th>
      <th>Last Name</th>
      <th>Username</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <th scope="row">1</th>
      <td>Mark</td>
      <td>Otto</td>
      <td>@mdo</td>
    </tr>
    <tr>
      <th scope="row">2</th>
      <td>Jacob</td>
      <td>Thornton</td>
      <td>@fat</td>
    </tr>
    <tr>
      <th scope="row">3</th>
      <td>Larry</td>
      <td>the Bird</td>
      <td>@twitter</td>
    </tr>
  </tbody>
</table>

<table class="table">
  <thead class="thead-default">
    <tr>
      <th>#</th>
      <th>First Name</th>
      <th>Last Name</th>
      <th>Username</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <th scope="row">1</th>
      <td>Mark</td>
      <td>Otto</td>
      <td>@mdo</td>
    </tr>
    <tr>
      <th scope="row">2</th>
      <td>Jacob</td>
      <td>Thornton</td>
      <td>@fat</td>
    </tr>
    <tr>
      <th scope="row">3</th>
      <td>Larry</td>
      <td>the Bird</td>
      <td>@twitter</td>
    </tr>
  </tbody>
</table>

Striped rows

Zebra-like stripes may be incorporated with the .table-striped class, an example

Bootstrap striped rows
<table class="table table-striped">
  <thead>
    <tr>
      <th>#</th>
      <th>First Name</th>
      <th>Last Name</th>
      <th>Username</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <th scope="row">1</th>
      <td>Mark</td>
      <td>Otto</td>
      <td>@mdo</td>
    </tr>
    <tr>
      <th scope="row">2</th>
      <td>Jacob</td>
      <td>Thornton</td>
      <td>@fat</td>
    </tr>
    <tr>
      <th scope="row">3</th>
      <td>Larry</td>
      <td>the Bird</td>
      <td>@twitter</td>
    </tr>
  </tbody>
</table>

Hover Rows

To make a hover side effect in the rows of your table add in the .table-hover class:

Bootstrap hover rows
<table class="table table-hover">
  <thead>
    <tr>
      <th>#</th>
      <th>First Name</th>
      <th>Last Name</th>
      <th>Username</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <th scope="row">1</th>
      <td>Mark</td>
      <td>Otto</td>
      <td>@mdo</td>
    </tr>
    <tr>
      <th scope="row">2</th>
      <td>Jacob</td>
      <td>Thornton</td>
      <td>@fat</td>
    </tr>
    <tr>
      <th scope="row">3</th>
      <td colspan="2">Larry the Bird</td>
      <td>@twitter</td>
    </tr>
  </tbody>
</table>

Bordered Table

You can surely bring in the borders on the every single table slide and a cell with the .table-bordered class:

Bootstrap bordered table
<table class="table table-bordered">
  <thead>
    <tr>
      <th>#</th>
      <th>First Name</th>
      <th>Last Name</th>
      <th>Username</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <th scope="row">1</th>
      <td>Mark</td>
      <td>Otto</td>
      <td>@mdo</td>
    </tr>
    <tr>
      <th scope="row">2</th>
      <td>Mark</td>
      <td>Otto</td>
      <td>@TwBootstrap</td>
    </tr>
    <tr>
      <th scope="row">3</th>
      <td>Jacob</td>
      <td>Thornton</td>
      <td>@fat</td>
    </tr>
    <tr>
      <th scope="row">4</th>
      <td colspan="2">Larry the Bird</td>
      <td>@twitter</td>
    </tr>
  </tbody>
</table>

Condensed Table

If you wish to make your table more compact - you can easily cut cell padding in half with this class: .table-condensed.

Take note that, while Bootstrap 4 uses .table-sm to condense a table, Bootstrap 3 uses .table-condensed. Each cut cell padding in half.

Bootstrap condensed table
<table class="table table-sm">
  <thead>
    <tr>
      <th>#</th>
      <th>First Name</th>
      <th>Last Name</th>
      <th>Username</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <th scope="row">1</th>
      <td>Mark</td>
      <td>Otto</td>
      <td>@mdo</td>
    </tr>
    <tr>
      <th scope="row">2</th>
      <td>Jacob</td>
      <td>Thornton</td>
      <td>@fat</td>
    </tr>
    <tr>
      <th scope="row">3</th>
      <td colspan="2">Larry the Bird</td>
      <td>@twitter</td>
    </tr>
  </tbody>
</table>

Contextual Classes

Use the contextual classes to color a table cells (<td>) and table rows (<tr>):

Bootstrap contextual classes
<!-- On rows -->
<tr class="table-active">...</tr>
<tr class="table-success">...</tr>
<tr class="table-warning">...</tr>
<tr class="table-danger">...</tr>
<tr class="table-info">...</tr>

<!-- On cells (`td` or `th`) -->
<tr>
  <td class="table-active">...</td>
  <td class="table-success">...</td>
  <td class="table-warning">...</td>
  <td class="table-danger">...</td>
  <td class="table-info">...</td>
</tr>

Changing the rows of a table Bootstrap 3 does not use the .table- prefix for its contextual classes. Bootstrap 3 uses .active while Bootstrap 4 uses .table-active. Other than that, both of these versions use the exact same 5 contextual keywords (active, success, info, warning, danger). Listed here you can see the information about each of the possible types:

● active: Applies the focus color to the table row or table cell

● success: Indicates a successful or positive action

● info: Indicates a neutral information change or action

● warning: Indicates a warning that you may need attention

● danger: Indicates a dangerous or potentially negative action

Responsive Tables

To create a responsive table - use the .table-responsive class. Table rolls in the horizontal way on gadgets that less than 768px. If the gadget is larger sized than 768px wide, then you will see no difference :

Bootstrap responsive tables

Bootstrap 4 allows you to add the .table-responsive class to the actual <table> element. Bootstrap 3 tables required that you add that class to a parent <div> element.

Examine a number of online video short training relating to Bootstrap tables

Connected topics:

Bootstrap tables: official documentation

Bootstrap tables  main documentation

W3schools:Bootstrap table tutorial

Bootstrap table  article

Bootstrap Tables Lecture

Bootstrap Tables Lecture

Best Free AI Website Generator

Generate AI websites with a simple prompt! Type in any language, export code in zip.


ChatGPT Website Generator



Best Free Website Builder Software

Create awesome websites offline! No coding. 9900+ templates. Edit and save locally, upload wherever.


Free website builder download for Win, Mac, Linux!



Latest Posts

  1. Forget Coding: Build Your Own App in Minutes With These 2026 AI Tools
  2. Level Up Your Web Projects: The Ultimate Guide to AI Integration for 2026
  3. Mobirise AI Website Builder: A Full Review of the 100% Online Tool.
  4. Launch a Site in No Time? We Reviewed 24 AI Builders to Determine the Clear Winner.
  5. List of 20 AI Code Builders and Generators - Get your code built by AI.
  6. 15 Best AI Website Creators and Generators - Generate your website instantly with AI.
  7. AI website creator and generator - how to create a website with AI in just 2 minutes.
  8. Best Free AI website generator and builder - create a website design with AI.
  9. Best Website Builder AIBest Free AI Website Builder - Create Website Design with AI
  10. Best Website Builder for Consultants, Magazines, Churches, Authors
  11. Best Website Builder for Designers, Videos, Education, Software Companies
  12. Website Builder for Beginners, Bloggers, Writers, IT Companies
  13. Best Website Builder for Restaurants, Online Stores, Real Estate, Musicians
  14. Best Website Builder for podcasts and affiliate marketing
  15. Therapists and nonprofits Website Builder
  16. Portfolio and SEO Website Builder
  17. Website Builder for Kids and Musicians
  18. Website Builder for Photographers and Artists
  19. HTML Code Generator - HTML Code Creator
  20. Web Design Program - Website Design Tool
  21. Landing Page Generator - Landing Page Builder
  22. No Coding Website Builder - Website Builder For Small Business
  23. Innovative HTML Builder Drag And Drop Free for Your Next Project
  24. Is There A Completely Free QR Code Generator
  25. Extremely Comfortable Business Website Constructor Review
  26. Bootstrap Select
  27. Bootstrap Panel
  28. Bootstrap Tabs
  29. Bootstrap Toggle
  30. Bootstrap Modal Popup
  31. Bootstrap Row
  32. Bootstrap Multiselect
  33. Bootstrap Media queries
  34. Bootstrap Login Forms
  35. Bootstrap Layout
  36. Bootstrap Jumbotron
  37. Bootstrap Button Group
  38. Bootstrap Breakpoints
  39. Bootstrap Navbar
  40. Bootstrap Tooltip
  41. Bootstrap Textarea
  42. Bootstrap Switch
  43. Bootstrap Slider
  44. Bootstrap Progress Bar
  45. Bootstrap Label
  46. Bootstrap Header
  47. Bootstrap Clearfix
  48. Bootstrap Sidebar
  49. Bootstrap Radio
  50. Bootstrap Offset
  51. Bootstrap Menu
  52. Bootstrap Columns
  53. Bootstrap Checkbox
  54. Bootstrap Accordion
  55. Bootstrap Image
  56. Bootstrap Grid
  57. Bootstrap Form
  58. Bootstrap Glyphicons
  59. Bootstrap List
  60. Bootstrap Carousel
  61. Bootstrap Icons
  62. Bootstrap Collapse
  63. Bootstrap Popover
  64. Bootstrap Input
  65. Bootstrap Modal
  66. Bootstrap Pagination
  67. Bootstrap Button
  68. Bootstrap Alert