ShapeYourPath
(current)
Run Code
Live Code Editor- Bootstrap 5 Responsive Table
Source Code
<!doctype html> <html lang="en"> <head> <!-- Required meta tags --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="robots" content="noindex,nofollow"> <meta name="description" content=""> <!-- Bootstrap CSS --> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet"> <title>Bootstrap 5 Responsive Table</title> </head> <body> <h1 class="text-center mt-2">Bootstrap 5 Responsive Table For All Breakpoint</h1> <div class="table-responsive border p-3 mt-4"> <table class="table table-bordered "> <thead> <tr> <th>#</th> <th>First Name</th> <th>Last Name</th> <th>Work</th> </tr> </thead> <tbody> <tr> <td>1</td> <td>Smith</td> <td>Jane</td> <td>Web Designer</td> </tr> <tr> <td>2</td> <td>John</td> <td>Doe</td> <td>Graphics Designer</td> </tr> <tr> <td>3</td> <td>Andre</td> <td>Ren</td> <td>Developer</td> </tr> </tbody> </table> </div> <h2 class="text-center mt-2">Bootstrap 5 Responsive Table For A Specific Breakpoint</h2> <div class="table-responsive-sm border p-3 mt-4"> <table class="table table-bordered"> <thead> <tr> <th>#</th> <th>First Name</th> <th>Last Name</th> <th>Work</th> </tr> </thead> <tbody> <tr> <td>1</td> <td>Smith</td> <td>Jane</td> <td>Web Designer</td> </tr> <tr> <td>2</td> <td>John</td> <td>Doe</td> <td>Graphics Designer</td> </tr> <tr> <td>3</td> <td>Andre</td> <td>Ren</td> <td>Developer</td> </tr> </tbody> </table> </div> <!-- Option 1: Bootstrap Bundle with Popper --> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js"></script> </body> </html>
Output :
Running