Reputation: 1
Does anyone know the difference b/w bootstrap .table
and .table-striped
?
I didn't see any difference
http://www.w3schools.com/bootstrap/tryit.asp?filename=trybs_table_basic&stacked=h
http://www.w3schools.com/bootstrap/tryit.asp?filename=trybs_table_striped&stacked=h
See these two links
Upvotes: 0
Views: 292
Reputation: 980
The table-stripped has a stripped pattern on the <td>
for better reading. If you look carefully enough you will notice that the <td>
differs.
Upvotes: 0
Reputation: 10418
The .table-striped class adds zebra-stripes to a table.
The table alternates white and gray lines if it's striped.
Upvotes: 0