"tabla clientes con opciones"
Bootstrap 3.0.0 Snippet by darioweb

<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-8 col-md-offset-2"> <table class="table table-striped custab"> <thead> <tr> <th>Nombre</th> <th>Propiedades</th> <th>Telefonos</th> <th class="text-center">Opciones</th> </tr> </thead> <tr> <td>News</td> <td>News Cate lorem imp duio poj oiu pouo pudfdf</td> <td>1</td> <td class="text-center"><a class='btn btn-success btn-xs' href="#"><span class="glyphicon glyphicon-edit"></span> Mas Informacion </a> </tr> <tr> <td>Products</td> <td>Main Products</td> <td>2</td> <td class="text-center"><a class='btn btn-success btn-xs' href="#"><span class="glyphicon glyphicon-edit"></span> Mas Informacion </a> </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: