

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
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 class table
<p style="">To create a table in Bootstrap, use the .table class.</p><p style="">You can try to run the following code to create a table:</p><p><a class="demo" href="http://tpcg.io/btLv2i" rel="nofollow" target="_blank">Live Demo</a></p><pre class="prettyprint notranslate"><!DOCTYPE html> <html> <head> <title>Bootstrap Example</title> <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet"> <script src = "/scripts/jquery.min.js"></script> <script src = "/bootstrap/js/bootstrap.min.js"></script> </head> <body> <div class = "panel panel-default"> <div class = "panel-heading"> <h3 class = "panel-title">Result</h3> </div> <div class = "panel-body"> Top Students of batch 2017-18 </div> <table class = "table"> <tr> <th>Student</th> <th>Marks</th> <th>Rank</th> </tr> <tr> <td>David</td> <td>82</td> <td>1</td> </tr> <tr> <td>John</td> <td>79</td> <td>2</td> </tr> <tr> <td>Tom</td> <td>76</td> <td>3</td> </tr> </table> </div> </body> </html></pre>
- Related Questions & Answers
- Bootstrap table class
- Bootstrap table-responsive class
- Bootstrap table-hover class
- Bootstrap table-condensed class
- Bootstrap table-striped class
- table-bordered class in Bootstrap
- Bootstrap progress class
- Bootstrap .card class
- Bootstrap .pagination class
- Bootstrap lead class
- Bootstrap checkbox class
- Bootstrap radio class
- Bootstrap .btn class
- Close Bootstrap class
- Clearfix Bootstrap class
Advertisements