CSS for tables
<div class="table-responsive"> <table class="table table-striped"></table> <table class="table table-bordered"></table> <table class="table table-hover"></table> <table class="table table-condensed"> <tr class="success">Color</tr> <tr class="active">Color</tr> <tr class="info">Color</tr> </div
Example:
<div class="table-responsive"> <table class="table table-bordered table-hover table-condensed table-striped hide"> <thead> <tr> <th>Код </th> <th>Название</th> <th>Автор</th> <th>Категория</th> <th>Год</th> <th>Цена</th> </tr> </thead> <tbody> </tbody> </table> </div>

Leave a Comment