Bootstrap table classes


[ad_1]
https://i.ytimg.com/vi/67_FboS47qc/hqdefault.jpg



bootstrap table styles
bootstrap table hover
bootstrap table condensed
bootstrap table border
bootstrap table responsive
bootstrap table example
bootstrap table striped example
bootstrap table with border
bootstrap condensed table
bootstrap responsive table example
bootstrap table contextual classes example

In this video we will discuss styling tables using bootstrap classes.

table class provides light padding and horizontal lines
table-striped class provides zebra-striping for the table rows
table-bordered class provide borders on all sides of the table and cells.
table-hover class provides highlighting of rows on hover
table-condensed class makes table more compact by cutting cell padding in half

To make a table responsive, place the table inside a div element, and apply table-responsive class on the div element. This will provide a horizontal scrollbar when the screen size is less than 768px (i.e on a small device). On a screen size larger than 768px you will not find any difference. Applying the table-responsive class directly on the table will not do anything useful.

Use the bootstrap contextual classes to colour the table rows

Link for slides, code samples and text version of the video
http://csharp-video-tutorials.blogspot.com/2016/06/bootstrap-table-classes.html

Link for all dot net and sql server video tutorial playlists
https://www.youtube.com/user/kudvenkat/playlists?sort=dd&view=1

Original source


10 responses to “Bootstrap table classes”

  1. Mr.Venkat
    First, Thank u alot for your great effort
    secondly, there is an information i would like ti share with u all; that is when can control the responsiveness behaviour of table through controlling the <td> element by adding a class of col- to it and having the following style
    td {
    max-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    }
    and we can use the title attribute for a complete text

Leave a Reply