"Responsive table with button"
Bootstrap 4.0.0 Snippet by kurtzawn

<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/4.0.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"> <table class="table"> <thead> <tr> <th scope="col">Purchased Product</th> <th scope="col">Order #</th> <th scope="col">Purchased Date</th> <th scope="col">Status</th> <th scope="col"></th> </tr> </thead> <tbody> <tr> <td data-label="purchased-product"> <img src="https://bootsnipp.com/bootstrap-builder/libs/builder/icons/image.svg" height="50" width="50" style=""> Samsung Galaxy A8 Star 4GB + 64GB Black</td> <td data-label="order">000000032</td> <td data-label="purchase-date">Sep 15, 2018</td> <td data-label="status">Not reviewed yet</td> <td data-label="action"><a href="#" class="btn btn-primary btn-default">Write Review</a></td> </tr> <tr> <td data-label="purchased-product"> <img src="https://bootsnipp.com/bootstrap-builder/libs/builder/icons/image.svg" height="50" width="50" style=""> Samsung Galaxy A8 Star 4GB + 64GB Black</td> <td data-label="order">000000032</td> <td data-label="purchase-date">Sep 15, 2018</td> <td data-label="status">Not reviewed yet</td> <td data-label="action"><a href="#" class="btn btn-primary btn-default">Write Review</a></td> </tr> <tr> <td data-label="purchased-product"> <img src="https://bootsnipp.com/bootstrap-builder/libs/builder/icons/image.svg" height="50" width="50" style=""> Samsung Galaxy A8 Star 4GB + 64GB Black</td> <td data-label="order">000000032</td> <td data-label="purchase-date">Sep 15, 2018</td> <td data-label="status">Not reviewed yet</td> <td data-label="action"><a href="#" class="btn btn-primary btn-default">Write Review</a></td> </tr> <tr> <td data-label="purchased-product"> <img src="https://bootsnipp.com/bootstrap-builder/libs/builder/icons/image.svg" height="50" width="50" style=""> Samsung Galaxy A8 Star 4GB + 64GB Black</td> <td data-label="order">000000032</td> <td data-label="purchase-date">Sep 15, 2018</td> <td data-label="status">Not reviewed yet</td> <td data-label="action"><a href="#" class="btn btn-primary btn-default">Write Review</a></td> </tr> </tbody> </table> </div>
table tr { background: #fff; /*border: 1px solid #ddd;*/ } table th, table td { text-align: center; vertical-align:middle; } table th { font-size: .85em; letter-spacing: .1em; text-transform: uppercase; } @media screen and (max-width: 600px) { table { border: 0; } table thead { border: none; height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; } table tr { display: block; margin-bottom: .625em; } table td { border-bottom: 1px solid #fff; display: block; font-size: .8em; text-align: right; } table td:before { content: attr(data-label); float: left; font-weight: bold; text-transform: uppercase; } table td:last-child { border-bottom: 0; } }

Related: See More


Questions / Comments: