VOOZH about

URL: https://www.geeksforgeeks.org/css/spectre-tables-striped-tables/

⇱ Spectre Tables Stripped tables - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Spectre Tables Stripped tables

Last Updated : 23 Jul, 2025

Tables are important elements of web development society. If you want to display some data then you will definitely require tables. Spectre tables are the same as HTML tables, here we will discuss the Spectre Stripped tables.

Tables Stripped tables Class:

  • table-stripped: This class is used to make the table row(odd one) stripped.

Syntax: 

<table class="table table-stripped">
 .....
</table>

Note: To make the table row stripped you must use the table class before this class.

Example:

Output:

👁 Spectre Tables Striped tables

Reference: https://picturepan2.github.io/spectre/elements/tables.html#tables-stripped

Comment