Create a table within a Bootstrap Panel


To create a non-bordered table within a panel, use the class .table within the panel.

You can try to run the following code to form a table within a panel

Example

Live Demo

<!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">Panel title</h3>
         </div>
         <div class = "panel-body">
            This is a demo panel
         </div>
         <table class = "table">
            <tr>
               <th>Student</th>
               <th>Marks</th>
               <th>Rank</th>
            </tr>
            <tr>
               <td>Amit</td>
               <td>97</td>
               <td>1</td>
            </tr>
            <tr>
               <td>Virat</td>
               <td>83</td>
               <td>2</td>
            </tr>
            <tr>
               <td>Tom</td>
               <td>70</td>
               <td>3</td>
            </tr>
         </table>
      </div>
   </body>
</html>

Updated on: 12-Jun-2020

864 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements