Reputation:
I've a HTML table:
<table class="table table-striped">
My question is if there is option in the same time to use another class in parallel like:
<table class="table table-hover">
Upvotes: 1
Views: 64
Reputation: 1405
You just need to add the class name with the existing classes like :
<table class="table table-striped table-hover">
And it will apply both effects.
Upvotes: 4