Bootstrap snippet and html example. Portfolio with blue hover

This html snippet was created to help web designers, web developers, front-end and back-end developer save time. Use it for free in your project and build your app faster, You can also download the HTML, CSS, and JS code.
Tags: portfolio

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.6 included, to get the result that you can see in the preview selection

<div class="works-v1" id="works-section">
    <div class="container">
        <h2 class="site-section">Our Works</h2>
        <p class="site-section-p">Accusamus consulatu qui eu, et facilis molestiae pri.<br> No est percipit prodesset signiferumque</p>
    </div>
    <div class="row">
        <div class="col-md-3 col-sm-6 col-lg-3 col-xs-6">
            <div class="work-box">
                <div class="work-box-hover">
                    <h3><a href="#">Jumping Like a Boss</a></h3>
                    <h6>City / Ilustration</h6>
                </div>
                <div class="work-box-cover">
                    <img src="https://www.bootdey.com/image/300x150/" alt="works">
                </div>
            </div>
        </div>
        <div class="col-md-3 col-sm-6 col-lg-3 col-xs-6">
            <div class="work-box">
                <div class="work-box-hover">
                    <h3><a href="#">Jumping Like a Boss</a></h3>
                    <h6>City / Ilustration</h6>
                </div>
                <div class="work-box-cover">
                    <img src="https://www.bootdey.com/image/300x150/" alt="works">
                </div>
            </div>
        </div>
        <div class="col-md-3 col-sm-6 col-lg-3 col-xs-6">
            <div class="work-box">
                <div class="work-box-hover">
                    <h3><a href="#">Jumping Like a Boss</a></h3>
                    <h6>City / Ilustration</h6>
                </div>
                <div class="work-box-cover">
                    <img src="https://www.bootdey.com/image/300x150/" alt="works">
                </div>
            </div>
        </div>
        <div class="col-md-3 col-sm-6 col-lg-3 col-xs-6">
            <div class="work-box">
                <div class="work-box-hover">
                    <h3><a href="#">Jumping Like a Boss</a></h3>
                    <h6>City / Ilustration</h6>
                </div>
                <div class="work-box-cover">
                    <img src="https://www.bootdey.com/image/300x150/" alt="works">
                </div>
            </div>
        </div>
        <div class="col-md-3 col-sm-6 col-lg-3 col-xs-6">
            <div class="work-box">
                <div class="work-box-hover">
                    <h3><a href="#">Jumping Like a Boss</a></h3>
                    <h6>City / Ilustration</h6>
                </div>
                <div class="work-box-cover">
                    <img src="https://www.bootdey.com/image/300x150/" alt="works">
                </div>
            </div>
        </div>
        <div class="col-md-3 col-sm-6 col-lg-3 col-xs-6">
            <div class="work-box">
                <div class="work-box-hover">
                    <h3><a href="#">Jumping Like a Boss</a></h3>
                    <h6>City / Ilustration</h6>
                </div>
                <div class="work-box-cover">
                    <img src="https://www.bootdey.com/image/300x150/" alt="works">
                </div>
            </div>
        </div>
        <div class="col-md-3 col-sm-6 col-lg-3 col-xs-6">
            <div class="work-box">
                <div class="work-box-hover">
                    <h3><a href="#">Jumping Like a Boss</a></h3>
                    <h6>City / Ilustration</h6>
                </div>
                <div class="work-box-cover">
                    <img src="https://www.bootdey.com/image/300x150/" alt="works">
                </div>
            </div>
        </div>
        <div class="col-md-3 col-sm-6 col-lg-3 col-xs-6">
            <div class="work-box">
                <div class="work-box-hover">
                    <h3><a href="#">Jumping Like a Boss</a></h3>
                    <h6>City / Ilustration</h6>
                </div>
                <div class="work-box-cover">
                    <img src="https://www.bootdey.com/image/300x150/" alt="works">
                </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 3.3.6 included, to get the result that you can see in the preview selection

body{margin-top:20px;}
.works-v1 {
  padding: 100px 30px;
}
.works-v1 .work-box {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
}
.works-v1 .work-box .work-box-cover {
  text-align: center;
}
.works-v1 .work-box .work-box-hover {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  padding: 38px 10px;
  top: 0;
  margin-top: -60px;
  height: 120px;
  opacity: 0;
}
.works-v1 .work-box .work-box-hover:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  content: "";
  z-index: -1;
  bottom: 0;
  opacity: 0.9;
  background: #1ab0db;

}
.works-v1 .work-box:hover .work-box-hover {
  opacity: 1;
  top: 50%;
}
.works-v1 .work-box .work-box-hover h3 {
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1.5em;
  color: #fff;
  margin: 0 auto 3px;
  font-weight: 600;
}
.works-v1 .work-box .work-box-hover h3 a {
  color: inherit;
}
.works-v1 .work-box .work-box-hover h3 a:hover {
  color: #333;
}
.works-v1 .work-box .work-box-hover h6 {
  text-align: center;
  font-size: 13px;
  line-height: 1.5em;
  font-weight: 400;
  color: #fff;
  margin: 0 auto;
}
.site-section {
  color: #333333;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  margin: 0 auto 60px;
  line-height: 1.2em;
}
.site-section.white {
  color: #fff;
}
.site-section-p {
  text-align: center;
  margin: -50px auto 60px;
  color: #808080;
  line-height: 1.7em;
  font-size: 16px;
}

Similar snippets

Bootstrap example and template. portfolio 4 columns

portfolio 4 columns

Bootstrap example and template. portfolio 3 column with name

portfolio 3 column with name

Bootstrap example and template. bs4 simple portfolio

bs4 simple portfolio

Bootstrap example and template. portfolio with category filter using isotope js

portfolio with category filter using isotope js

Bootstrap example and template. profile edit data and skills

profile edit data and skills

Bootstrap example and template. simple team cards

simple team cards

Bootstrap example and template. profile with data and skills

profile with data and skills

Bootstrap example and template. bs5 dark footer

bs5 dark footer

Bootstrap example and template. Portfolio with blue hover

About this bootstrap example/template

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 622 views, Using this bootstrap snippet you have the following benefits:

Bootstrap 3.3.6

<link rel='stylesheet' href='https://netdna.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css'>

<script src='https://netdna.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js'></script>

This code example is based on bootstrap 3.3.6 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