1// Add the table and table striped class from bootstrap
2<table class="table table-striped">
1/* Add the following CSS style after loading Bootstrap
2 to change the color of table-striped: */
3
4.table-striped>tbody>tr:nth-child(odd)>td,
5.table-striped>tbody>tr:nth-child(odd)>th {
6 background-color: red; /* Choose your own color here */
7}