If you're looking to add striped rows to tables using Bootstrap, check out this link. Simply adding a specific class to the HTML table element should do the trick:
<table class="table table-striped">
...
</table>
But what if you're unable to modify the HTML and can only work with CSS? If your existing HTML files have regular table elements without any classes:
<table>
...
</table>
Don't worry - you can still achieve the look of striped rows by using a CSS solution. You could try mimicking Bootstrap's .table-striped styles in your own CSS file:
.table-striped {
...
}
Alternatively, you may need to create your own custom CSS file to overwrite Bootstrap styles.