المشاركات

عرض الرسائل ذات التصنيف Bootstrap CSS Classes

Twitter Bootstrap Table Styles Tutorial with Examples

صورة
HTML Table Element displays your website data in tabular format but writing CSS styles of your own to improve the look and feel of those tables is definitely a headache. Never worry. Twitter Bootstrap CSS Framework comes to your rescue here. It provides a bunch of css classes to style the html tables. By using these bootstrap table styles along with the <table> tag you can greatly improve the appearance of the tables. How to Use Twitter Bootstrap Table Styles in HTML Bootstrap provides a base class named ".table" which adds default cell padding and horizontal dividers in-between rows of the table. To apply this style, just add the css class ".table" to the html <table> tag. Example <!-- basic style --> <table class="table"> <thead> <tr> <th>#</th> <th>Name</th> <th>Customer-ID</th> <th>Email</th> ...