HTML code
This is the html code used to create this bootstrap snippet, You can copy and paste the following html code inside a page with bootstrap 5.2.0 included, to get the result that you can see in the preview selection
Download<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
<div class="container">
<div class="row">
<div class="col-12 mb-3 mb-lg-5">
<div class="overflow-hidden card table-nowrap table-card">
<div class="card-header d-flex justify-content-between align-items-center">
<h5 class="mb-0">New customers</h5>
<a href="#!" class="btn btn-light btn-sm">View All</a>
</div>
<div class="table-responsive">
<table class="table mb-0">
<thead class="small text-uppercase bg-body text-muted">
<tr>
<th>Name</th>
<th>Email</th>
<th>Country</th>
<th>Payment method</th>
<th>Created Date</th>
<th class="text-end">Action</th>
</tr>
</thead>
<tbody>
<tr class="align-middle">
<td>
<div class="d-flex align-items-center">
<img src="https://bootdey.com/img/Content/avatar/avatar1.png" class="avatar sm rounded-pill me-3 flex-shrink-0" alt="Customer">
<div>
<div class="h6 mb-0 lh-1">Mark Voldov</div>
</div>
</div>
</td>
<td>[email protected]</td>
<td> <span class="d-inline-block align-middle">Russia</span></td>
<td><span>****6231</span></td>
<td>21 Sep, 2021</td>
<td class="text-end">
<div class="drodown">
<a data-bs-toggle="dropdown" href="#" class="btn p-1" aria-expanded="false">
<i class="fa fa-bars" aria-hidden="true"></i>
</a>
<div class="dropdown-menu dropdown-menu-end" style="">
<a href="#!" class="dropdown-item">View Details</a>
<a href="#!" class="dropdown-item">Delete user</a>
</div>
</div>
</td>
</tr>
<tr class="align-middle">
<td>
<div class="d-flex align-items-center">
<img src="https://bootdey.com/img/Content/avatar/avatar2.png" class="avatar sm rounded-pill me-3 flex-shrink-0" alt="Customer">
<div>
<div class="h6 mb-0 lh-1">Topias Kantola</div>
</div>
</div>
</td>
<td>[email protected]</td>
<td> <span class="d-inline-block align-middle">Brazil</span></td>
<td><span>****@mail.com</span></td>
<td>21 Sep, 2021</td>
<td class="text-end">
<div class="drodown">
<a data-bs-toggle="dropdown" href="#" class="btn p-1">
<i class="fa fa-bars" aria-hidden="true"></i>
</a>
<div class="dropdown-menu dropdown-menu-end">
<a href="#!" class="dropdown-item">View Details</a>
<a href="#!" class="dropdown-item">Delete user</a>
</div>
</div>
</td>
</tr>
<tr class="align-middle">
<td>
<div class="d-flex align-items-center">
<img src="https://bootdey.com/img/Content/avatar/avatar3.png" class="avatar sm rounded-pill me-3 flex-shrink-0" alt="Customer">
<div>
<div class="h6 mb-0 lh-1">Anaiah Whitten</div>
</div>
</div>
</td>
<td>[email protected]</td>
<td>
<span class="d-inline-block align-middle">Poland</span>
</td>
<td><span>****0014</span></td>
<td>12 June, 2021</td>
<td class="text-end">
<div class="drodown">
<a data-bs-toggle="dropdown" href="#" class="btn p-1">
<i class="fa fa-bars" aria-hidden="true"></i>
</a>
<div class="dropdown-menu dropdown-menu-end">
<a href="#!" class="dropdown-item">View Details</a>
<a href="#!" class="dropdown-item">Delete user</a>
</div>
</div>
</td>
</tr>
<tr class="align-middle">
<td>
<div class="d-flex align-items-center">
<img src="https://bootdey.com/img/Content/avatar/avatar4.png" class="avatar sm rounded-pill me-3 flex-shrink-0" alt="Customer">
<div>
<div class="h6 mb-0 lh-1">Wyatt Morris</div>
</div>
</div>
</td>
<td>[email protected]</td>
<td>
<span class="d-inline-block align-middle">Kenya</span>
</td>
<td><span>****8715</span></td>
<td>04 June, 2021</td>
<td class="text-end">
<div class="drodown">
<a data-bs-toggle="dropdown" href="#" class="btn p-1">
<i class="fa fa-bars" aria-hidden="true"></i>
</a>
<div class="dropdown-menu dropdown-menu-end">
<a href="#!" class="dropdown-item">View Details</a>
<a href="#!" class="dropdown-item">Delete user</a>
</div>
</div>
</td>
</tr>
<tr class="align-middle">
<td>
<div class="d-flex align-items-center">
<img src="https://bootdey.com/img/Content/avatar/avatar5.png" class="avatar sm rounded-pill me-3 flex-shrink-0" alt="Customer">
<div>
<div class="h6 mb-0 lh-1">Eliana Stout</div>
</div>
</div>
</td>
<td>[email protected]</td>
<td>
<span class="d-inline-block align-middle">Usa</span>
</td>
<td><span>****1010</span></td>
<td>01 June, 2021</td>
<td class="text-end">
<div class="drodown">
<a data-bs-toggle="dropdown" href="#" class="btn p-1">
<i class="fa fa-bars" aria-hidden="true"></i>
</a>
<div class="dropdown-menu dropdown-menu-end">
<a href="#!" class="dropdown-item">View Details</a>
<a href="#!" class="dropdown-item">Delete user</a>
</div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
CSS code
This is the css code used to create this bootstrap snippet, You can copy and paste the following css code inside a page with bootstrap 5.2.0 included, to get the result that you can see in the preview selection
Downloadbody{margin-top:20px;
background:#eee;
}
.card {
box-shadow: 0 20px 27px 0 rgb(0 0 0 / 5%);
}
.avatar.sm {
width: 2.25rem;
height: 2.25rem;
font-size: .818125rem;
}
.table-nowrap .table td, .table-nowrap .table th {
white-space: nowrap;
}
.table>:not(caption)>*>* {
padding: 0.75rem 1.25rem;
border-bottom-width: 1px;
}
table th {
font-weight: 600;
background-color: #eeecfd !important;
}
About this bootstrap example/template
This example/template, new customer list, was published on Dec 7th 2022, 10:03 by Bootdey Admin and it is free.
We hope you will enjoy this awesome snippet and stay tuned for the latest updates, bootdey snippets are already used in thousands of blogs, websites and projects. We believe it will save your precious time and gives trendy look to your next web project.
We always try to offer the best beautiful and responsive source of Bootstrap code examples and components.
This code example currectly have 13.5K views, Using this bootstrap snippet you have the following benefits:
Bootstrap 5.2.0
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css'>
<script src='https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js'></script>
This code example is based on bootstrap 5.2.0 and the grid system of this framework
Responsive
Based on bootstrap framework makes all the layouts perfectly responsive for all devices
Crossbrowser compatibility
Tested on all major browsers, it works smoothly on all of them
semantic html 5
Built on html / css3 the code quality is really amazing
Simple Integration
This code example can be simply integrated on existing sites and new ones too, all you need to do is copy the code and start working