"Striped table 3.0"
Bootstrap 3.0.0 Snippet by Yidnekachew01

<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/bootstrap/3.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"> <div class="row col-md-6 col-md-offset-2 custyle"> <table class="table table-striped custab"> <thead> <a href="#" class="btn btn-primary btn-xs pull-right"><b>+</b> Add new position</a> <tr> <th>Job Position</th> <th class="text-center">Action</th> </tr> </thead> <tr> <td>Software Engineering</td> <td class="text-center"><a href="#" class="btn btn-danger btn-xs"><span class="glyphicon glyphicon-remove"></span> Delete</a></td> </tr> <tr> <td>Project Management</td> <td class="text-center"><a href="#" class="btn btn-danger btn-xs"><span class="glyphicon glyphicon-remove"></span> Delete</a></td> </tr> </table> </div> </div>
.custab{ border: 1px solid #ccc; padding: 5px; margin: 5% 0; box-shadow: 3px 3px 2px #ccc; transition: 0.5s; } .custab:hover{ box-shadow: 3px 3px 0px transparent; transition: 0.5s; }

Related: See More


Questions / Comments: