My table is designed with stripes using the following code:
<table class="table-sm table-hover table-striped">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
...
</tbody>
</table>
I am currently utilizing the most recent Bootstrap 4 beta version. I am looking to customize the alternating row colors that Bootstrap applies for striping the rows, but could not locate any relevant information in the documentation. According to an outdated post on Stack Overflow, I could achieve this by including my own CSS file. However, I would prefer to accomplish this goal solely through the use of Bootstrap classes.
Thank you for providing assistance, Marc