user3706142
user3706142

Reputation:

Use 2 bootstrap class for table

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

Answers (1)

tejashsoni111
tejashsoni111

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

Related Questions