"BackScatter Table"
Bootstrap 3.3.0 Snippet by Bayuanggara

<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.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 ----------> <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script> </head> <body> <div class="container"> <h2>Table Example</h2> <!--dropdown menu--> <div class="dropdown"> <button class="btn btn-default dropdown-toggle" type="button" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">Dropdown Example <span class="caret"></span> </button> <ul class="dropdown-menu" aria-labelledby="dropdownMenu1"> <li><a href="#"><span class="glyphicon glyphicon-plus-sign"></span>New Entry</a></li> <li role="seperator" class="divider"></li> <li><a href="#">category 1</a></li> <li><a href="#">category 2</a></li> </ul> </div> <br><br> <!--table--> <table class="table table-striped"> <thead> <tr class="info"> <th>Date</th> <th>Category</th> <th>Vendor</th> <th>Report Number</th> <th>Apporval Status</th> <th>Amount</th> </tr> </thead> <tbody> <tr> <!--first example--> <td>07/28/2016</td> <td>Expenses</td> <td>LLC</td> <td>129756</td> <td class="danger">Not Approved</td> <td>$129.90</td> </tr> <tr> <!--second example--> <td>07/24/2016</td> <td>Travel</td> <td>Co.</td> <td>143453</td> <td class="success">Approved</td> <td>$85.00</td> </tr> <tr> <!--third example--> <td>07/22/2016</td> <td>Contracts</td> <td>LLC</td> <td>122223</td> <td class="warning">Pending</td> <td>$125.55</td> </tr> </tbody> </table> </div> </body> </html>

Related: See More


Questions / Comments: