- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- 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-responsive class
Wrapping any .table in .table-responsive class, you will make the table scroll horizontally up to small devices (under 768px). When viewing on anything larger than 768px wide, you will not see any difference in these tables.
To make a responsive table, you can try to run the following code −
Example
<!DOCTYPE html> <html> <head> <title>Bootstrap Table</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 = "table-responsive"> <table class = "table"> <thead> <tr> <th>Subject</th> <th>Marks</th> <th>Student</th> </tr> </thead> <tbody> <tr class = "success"> <td>Programming</td> <td>90</td> <td>Amit</td> </tr> <tr class = "active"> <td>Web Dev</td> <td>92</td> <td>Yuvraj</td> </tr> <tr class = "warning"> <td>Science</td> <td>95</td> <td>Sachin</td> </tr> <tr class = "danger"> <td>Economics</td> <td>80</td> <td>Tony</td> </tr> </tbody> </table> </body> </html>
- Related Articles
- Make a table responsive using the table-responsive class
- Create Responsive Table with Bootstrap
- Bootstrap table class
- Bootstrap class table
- Bootstrap table-hover class
- Bootstrap table-condensed class
- Bootstrap table-striped class
- table-bordered class in Bootstrap
- Bootstrap responsive utility classes
- Responsive grid with Bootstrap
- Make an image responsive with Bootstrap
- Add responsive features to Bootstrap navbar
- Responsive Images in Bootstrap with Examples
- Bootstrap 3 truncate long text inside rows of a table in a responsive way with HTML
- How to create a responsive website with Bootstrap 4?

Advertisements