 
  Data Structure Data Structure
 Networking Networking
 RDBMS RDBMS
 Operating System Operating System
 Java Java
 MS Excel MS Excel
 iOS iOS
 HTML HTML
 CSS CSS
 Android Android
 Python Python
 C Programming C Programming
 C++ C++
 C# C#
 MongoDB MongoDB
 MySQL MySQL
 Javascript Javascript
 PHP PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Bootstrap Table Elements
The following are the Bootstrap table elements −
| Tag | Description | 
|---|---|
| <table> | Wrapping element for displaying data in a tabular format | 
| <thead> | Container element for table header rows (<tr>) to label table columns. | 
| <tbody> | Container element for table rows (<tr>) in the body of the table. | 
| <tr> | Container element for a set of table cells (<td> or <th>) that appears on a single row. | 
| <td> | Default table cell. | 
| <th> | Special table cell for column (or row, depending on scope and placement) labels. Must be used within a <thead> | 
| <caption> | Description or summary of what the table holds. | 
Advertisements
 