I already have a css class .table-striped
from bootstrap. And now I want to specific the css class to all <table>
tag in my page.
Without adding .table-striped
to all <table>
tag <table class="table-striped">
.
Is there anyway can I do it in a more simple way like this :
table {
.table-striped
}