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 4.1.1 included, to get the result that you can see in the preview selection
Download<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="articles card">
<div class="card-close">
<div class="dropdown">
<button type="button" id="closeCard4" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" class="dropdown-toggle"><i class="fa fa-ellipsis-v"></i></button>
<div aria-labelledby="closeCard4" class="dropdown-menu dropdown-menu-right has-shadow"><a href="#" class="dropdown-item remove"> <i class="fa fa-times"></i>Close</a><a href="#" class="dropdown-item edit"> <i class="fa fa-gear"></i>Edit</a></div>
</div>
</div>
<div class="card-header d-flex align-items-center">
<h2 class="h3">Trending Articles </h2>
<div class="badge badge-rounded bg-green">4 New </div>
</div>
<div class="card-body no-padding">
<div class="item d-flex align-items-center">
<div class="image"><img src="https://bootdey.com/img/Content/avatar/avatar2.png" alt="..." class="img-fluid rounded-circle"></div>
<div class="text"><a href="#">
<h3 class="h5">Lorem Ipsum Dolor</h3></a><small>Posted on 5th June 2017 by Aria Smith. </small></div>
</div>
<div class="item d-flex align-items-center">
<div class="image"><img src="https://bootdey.com/img/Content/avatar/avatar3.png" alt="..." class="img-fluid rounded-circle"></div>
<div class="text"><a href="#">
<h3 class="h5">Lorem Ipsum Dolor</h3></a><small>Posted on 5th June 2017 by Frank Williams. </small></div>
</div>
<div class="item d-flex align-items-center">
<div class="image"><img src="https://bootdey.com/img/Content/avatar/avatar4.png" alt="..." class="img-fluid rounded-circle"></div>
<div class="text"><a href="#">
<h3 class="h5">Lorem Ipsum Dolor</h3></a><small>Posted on 5th June 2017 by Ashley Wood. </small></div>
</div>
<div class="item d-flex align-items-center">
<div class="image"><img src="https://bootdey.com/img/Content/avatar/avatar5.png" alt="..." class="img-fluid rounded-circle"></div>
<div class="text"><a href="#">
<h3 class="h5">Lorem Ipsum Dolor</h3></a><small>Posted on 5th June 2017 by Jason Doe. </small></div>
</div>
<div class="item d-flex align-items-center">
<div class="image"><img src="https://bootdey.com/img/Content/avatar/avatar6.png" alt="..." class="img-fluid rounded-circle"></div>
<div class="text"><a href="#">
<h3 class="h5">Lorem Ipsum Dolor</h3></a><small>Posted on 5th June 2017 by Sam Martinez. </small></div>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="articles card">
<div class="card-close">
<div class="dropdown">
<button type="button" id="closeCard4" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" class="dropdown-toggle"><i class="fa fa-ellipsis-v"></i></button>
<div aria-labelledby="closeCard4" class="dropdown-menu dropdown-menu-right has-shadow"><a href="#" class="dropdown-item remove"> <i class="fa fa-times"></i>Close</a><a href="#" class="dropdown-item edit"> <i class="fa fa-gear"></i>Edit</a></div>
</div>
</div>
<div class="card-header d-flex align-items-center">
<h2 class="h3">Trending Articles </h2>
<div class="badge badge-rounded bg-green">4 New </div>
</div>
<div class="card-body no-padding">
<div class="item d-flex align-items-center">
<div class="image"><img src="https://bootdey.com/img/Content/avatar/avatar6.png" alt="..." class="img-fluid rounded-circle"></div>
<div class="text"><a href="#">
<h3 class="h5">Lorem Ipsum Dolor</h3></a><small>Posted on 5th June 2017 by Aria Smith. </small></div>
</div>
<div class="item d-flex align-items-center">
<div class="image"><img src="https://bootdey.com/img/Content/avatar/avatar7.png" alt="..." class="img-fluid rounded-circle"></div>
<div class="text"><a href="#">
<h3 class="h5">Lorem Ipsum Dolor</h3></a><small>Posted on 5th June 2017 by Frank Williams. </small></div>
</div>
<div class="item d-flex align-items-center">
<div class="image"><img src="https://bootdey.com/img/Content/avatar/avatar1.png" alt="..." class="img-fluid rounded-circle"></div>
<div class="text"><a href="#">
<h3 class="h5">Lorem Ipsum Dolor</h3></a><small>Posted on 5th June 2017 by Ashley Wood. </small></div>
</div>
<div class="item d-flex align-items-center">
<div class="image"><img src="https://bootdey.com/img/Content/avatar/avatar5.png" alt="..." class="img-fluid rounded-circle"></div>
<div class="text"><a href="#">
<h3 class="h5">Lorem Ipsum Dolor</h3></a><small>Posted on 5th June 2017 by Jason Doe. </small></div>
</div>
<div class="item d-flex align-items-center">
<div class="image"><img src="https://bootdey.com/img/Content/avatar/avatar6.png" alt="..." class="img-fluid rounded-circle"></div>
<div class="text"><a href="#">
<h3 class="h5">Lorem Ipsum Dolor</h3></a><small>Posted on 5th June 2017 by Sam Martinez. </small></div>
</div>
</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 4.1.1 included, to get the result that you can see in the preview selection
Downloadbody{
margin-top:20px;
background:#eee;
}
.articles a {
text-decoration: none !important;
display: block;
margin-bottom: 0;
color: #555
}
.articles .badge {
font-size: 0.7em;
padding: 5px 10px;
line-height: 1;
margin-left: 10px
}
.articles .item {
padding: 20px
}
.articles .item:nth-of-type(even) {
background: #fafafa
}
.articles .item .image {
min-width: 50px;
max-width: 50px;
height: 50px;
margin-right: 15px
}
.articles .item img {
padding: 3px;
border: 1px solid #28a745
}
.articles .item h3 {
color: #555;
font-weight: 400;
margin-bottom: 0
}
.articles .item small {
color: #aaa;
font-size: 0.75em
}
.card-close {
position: absolute;
top: 15px;
right: 15px
}
.card-close .dropdown-toggle {
color: #999;
background: none;
border: none
}
.card-close .dropdown-toggle:after {
display: none
}
.card-close .dropdown-menu {
border: none;
min-width: auto;
font-size: 0.9em;
border-radius: 0;
-webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1), -2px -2px 3px rgba(0, 0, 0, 0.1);
box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1), -2px -2px 3px rgba(0, 0, 0, 0.1)
}
.card-close .dropdown-menu a {
color: #999 !important
}
.card-close .dropdown-menu a:hover {
background: #796AEE;
color: #fff !important
}
.card-close .dropdown-menu a i {
margin-right: 10px;
-webkit-transition: none;
transition: none
}
About this bootstrap example/template
This example/template, bs4 Trending Articles, was published on Mar 9th 2019, 08:31 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 10.5K views, Using this bootstrap snippet you have the following benefits:
Bootstrap 4.1.1
<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 4.1.1 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