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 3.3.7 included, to get the result that you can see in the preview selection
Download<div class="container">
<div class="latest-news-box">
<!-- Row -->
<div class="row nomargin">
<div class="col-md-6 nopadding">
<div class="item item-left">
<div class="col-md-6 nopadding hidden-xs">
<img src="http://mianfolio.com/kosimedic/v1/img/news/image-01.jpg" alt="News Image">
<span class="img-overflow"></span>
<div class="arrow-left"></div>
</div>
<div class="col-md-6 nopadding">
<div class="content">
<p class="date">02.03.2016</p>
<h2>Oral Health Consultation</h2>
<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has...</p>
<a href="#" class="btn blue small">Read More</a>
<span class="comments">0 <i class="fa fa-comment-o" aria-hidden="true"></i></span>
</div>
</div>
</div>
</div>
<div class="col-md-6 nopadding">
<div class="item item-left">
<div class="col-md-6 nopadding hidden-xs">
<img src="http://mianfolio.com/kosimedic/v1/img/news/image-02.jpg" alt="News Image">
<span class="img-overflow"></span>
<div class="arrow-left"></div>
</div>
<div class="col-md-6 nopadding">
<div class="content">
<p class="date">02.03.2016</p>
<h2>Deep Teeth Whitening</h2>
<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has...</p>
<a href="#" class="btn blue small">Read More</a>
<span class="comments">3 <i class="fa fa-comment-o" aria-hidden="true"></i></span>
</div>
</div>
</div>
</div>
<div class="col-md-6 nopadding">
<div class="item item-right">
<div class="col-md-6 nopadding">
<div class="content">
<p class="date">02.03.2016</p>
<h2>Latest Blog Image Post</h2>
<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has...</p>
<a href="#" class="btn blue small">Read More</a>
<span class="comments">11 <i class="fa fa-comment-o" aria-hidden="true"></i></span>
</div>
</div>
<div class="col-md-6 nopadding hidden-xs">
<img src="http://mianfolio.com/kosimedic/v1/img/news/image-03.jpg" alt="News Image">
<span class="img-overflow"></span>
<div class="arrow-right"></div>
</div>
</div>
</div>
<div class="col-md-6 nopadding">
<div class="item item-right">
<div class="col-md-6 nopadding">
<div class="content">
<p class="date">02.03.2016</p>
<h2>BLog Post With Image</h2>
<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has...</p>
<a href="#" class="btn blue small">Read More</a>
<span class="comments">0 <i class="fa fa-comment-o" aria-hidden="true"></i></span>
</div>
</div>
<div class="col-md-6 nopadding hidden-xs">
<img src="http://mianfolio.com/kosimedic/v1/img/news/image-04.jpg" alt="News Image">
<span class="img-overflow"></span>
<div class="arrow-right"></div>
</div>
</div>
</div>
</div> <!-- ./end Row -->
</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 3.3.7 included, to get the result that you can see in the preview selection
Downloadbody{margin-top:20px;}
/* Latest News */
.latest-news-box {
background-color: #fff;
border-radius: 4px;
border: 1px solid #ddd;
overflow: hidden;
}
.item .content {
padding: 15px;
height: 250px;
}
.item {
position: relative;
width: 100%;
height: 100%;
cursor: pointer;
}
.item h2 {
color: #4c4c4c;
font-size: 18px;
}
.item p {
font-size: 12px;
line-height: 22px;
margin: 10px 0;
}
.item p.date {
font-size: 11px;
font-weight: 600;
color: #868686;
opacity: .8;
margin: 0;
}
.item .comments {
position: absolute;
bottom: 15px;
right: 15px;
}
.latest-news-box .item .btn {
position: absolute;
bottom: 15px;
left: 15px;
}
.latest-news-box .item img {
width: 100%;
height: 250px;
}
.img-overflow {
background: #32b8da;
background: -webkit-linear-gradient(left, #32b8da 0%, #5cceeb 42%, #32dac3 85%);
background: -o-linear-gradient(left, #32b8da 0%, #5cceeb 42%, #32dac3 85%);
background: linear-gradient(to right, #32b8da 0%, #5cceeb 42%, #32dac3 85%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#32b8da', endColorstr='#32dac3',GradientType=1 );
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
opacity: 0;
}
.item:hover .img-overflow {
opacity: .8;
-webkit-transition: all 0.5s ease-out;
-moz-transition: all 0.5s ease-out;
-o-transition: all 0.5s ease-out;
transition: all 0.5s ease-out;
}
.item .arrow-left {
width: 0;
height: 0;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
border-right: 10px solid #fff;
position: absolute;
top: 15px;
right: 0;
}
.item .arrow-right {
width: 0;
height: 0;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
border-left: 10px solid #fff;
position: absolute;
top: 15px;
left: 0;
}
img {
max-width: 100%;
}
.nopadding {
padding: 0 !important;
}
.btn.blue, a.btn.blue {
background: #32b8da;
border-color: #32b8da;
}

About this bootstrap example/template
This example/template, latest news block, was published on Nov 3rd 2016, 19:12 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 3.8K views, Using this bootstrap snippet you have the following benefits:
Bootstrap 3.3.7
<link rel='stylesheet' href='https://netdna.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css'>
<script src='https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js'></script>
This code example is based on bootstrap 3.3.7 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