"Panel table with filters (per column)"
Bootstrap 3.1.0 Snippet by blayderunner123

<link href="//netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <div class="container"> <hr> <div class="row"> <div class="panel panel-primary"> <div class="panel-heading"> <h3 class="panel-title">Export to Excel</h3> </div> <table class="table"> <thead> <tr> <th>#</th> <th>First Name</th> <th>Last Name</th> <th>Username</th> </tr> </thead> <tbody> <tr> <td>1</td> <td>Mark</td> <td>Otto</td> <td>@mdo</td> </tr> <tr> <td>2</td> <td>Jacob</td> <td>Thornton</td> <td>@fat</td> </tr> <tr> <td>3</td> <td>Larry</td> <td>the Bird</td> <td>@twitter</td> </tr> </tbody> </table> </div> </div> </div>
.panel-excel>.panel-heading { color: #fff; background-color: #1E6E42; border: #1E6E42; } .panel-excel{ border-color: #1E6E42; } .table-panel { margin-top: 15px; }

Related: See More


Questions / Comments: