content logo

Bootstrap Grids:

Circular Bootstrap Grids with Hover Effect

A grid layout is a type of web design that makes use of boxes in order to clean up your pages and create more physical space. You can add any content such as images or text in a grid layout which leads to the creation of a stylish website. This can help you achieve a balance between text and visual content which is more pleasing to the eyes of your users. There are many creative ways to use a grids layout in your website and all of them can boost the uniqueness of your website and help it stand out more. Basically, a grids layout is the best way to organize your website and have things in a well-designed list.

As we have already stated, web design is pure creativity and innovation; so, there isn’t really one single best way that everyone can use for their website. In this post, we are showcasing a Bootstrap rounded grids layout code. It adds more style to the design and creates a sense of uniqueness. You can make columns and rows with the help of our Bootstrap circle grids code. If you want your website to look different from most websites out there then don’t hesitate and use our Bootstrap circular rounded cols code.

#

Bootstrap Circle Grids

#

Bootstrap Rounded Grids

#

Bootstrap Circular Rounded Cols

<!-- This script got from frontendfreecode.com -->
<div class="container-fluid">
  <div class="row mt-3">
      
    <div class="col-3">
      <div class="do-item do-item-circle do-circle">
        <img src="https://picsum.photos/261/261" class="do-item do-circle">
        <div class="do-info-wrap do-circle">
          <div class="do-info">
            <div class="do-info-front do-circle"></div>
            <div class="do-info-back do-circle">
              <h3>Title Here</h3>
              <div>Description<br>
                 Author / Date</div>
            </div>
          </div>
        </div>
      </div>
    </div>
    <div class="col-3">
      <div class="do-item do-item-circle do-circle">
        <img src="https://picsum.photos/261/261" class="do-item do-circle">
        <div class="do-info-wrap do-circle">
          <div class="do-info">
            <div class="do-info-front do-circle"></div>
            <div class="do-info-back do-circle">
              <h3>Title Here</h3>
              <div>Description
                <br /> Author / Date</div>
            </div>
          </div>
        </div>
      </div>
    </div>
    <div class="col-3">
      <div class="do-item do-item-circle do-circle">
        <img src="https://picsum.photos/261/261" class="do-item do-circle">
        <div class="do-info-wrap do-circle">
          <div class="do-info">
            <div class="do-info-front do-circle"></div>
            <div class="do-info-back do-circle">
              <h3>Title Here</h3>
              <div>Description
                <br /> Author / Date</div>
            </div>
          </div>
        </div>
      </div>
    </div>
    <div class="col-3">
      <div class="do-item do-item-circle do-circle">
        <img src="https://picsum.photos/261/261" class="do-item do-circle">
        <div class="do-info-wrap do-circle">
          <div class="do-info">
            <div class="do-info-front do-circle"></div>
            <div class="do-info-back do-circle">
              <h3>Title Here</h3>
              <div>Description
                <br /> Author / Date</div>
            </div>
          </div>
        </div>
      </div>
    </div>

  </div>
</div>
<a style="font-size: 8pt; text-decoration: none" target="_blank" href="http://frontendfreecode.com">Free Frontend</a>
                                                                            
.do-circle {
  border-radius: 50%;
}

.do-item {
  width: 100%;
  height: auto;
  position: relative;
}

.do-item-circle {
  max-width: 261px;
}

.do-item-square {
  max-width: 350px;
}

.do-info-wrap {
  position: absolute;
  top: 20px;
  left: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  transition: all 0.4s ease-in-out;
  perspective: 800px;
  box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.2), inset 0 0 3px rgba(115, 114, 115, 0.2);
}

.do-info {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
  transform-style: preserve-3d;
}

.do-info > div {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.do-info .do-info-back {
  transform: rotate3d(0, 1, 0, 180deg);
  background: #000;
}

.do-info h3 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 10px;
  margin: 0 5px;
  padding: 40px 0 0 0;
  height: 70px;
  font-family: 'Open Sans', Arial, sans-serif;
  text-shadow: 0 0 1px #fff, 0 1px 2px rgba(0, 0, 0, 0.3);
}

.do-info-back {
  text-align: center;
}

.do-info-back > div {
  color: #fff;
  padding: 0px 5px;
  margin: 0 3px;
  font-size: 8px;
  border-top: 1px solid #fff;
}

.do-item:hover .do-info-wrap {
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8), inset 0 0 3px rgba(255, 255, 255, 0.8);
}

.do-item:hover .do-info {
  transform: rotate3d(0, 1, 0, -180deg);
}
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- This script got from frontendfreecode.com -->

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<style>
.do-circle {
  border-radius: 50%;
}

.do-item {
  width: 100%;
  height: auto;
  position: relative;
}

.do-item-circle {
  max-width: 261px;
}

.do-item-square {
  max-width: 350px;
}

.do-info-wrap {
  position: absolute;
  top: 20px;
  left: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  transition: all 0.4s ease-in-out;
  perspective: 800px;
  box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.2), inset 0 0 3px rgba(115, 114, 115, 0.2);
}

.do-info {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
  transform-style: preserve-3d;
}

.do-info > div {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.do-info .do-info-back {
  transform: rotate3d(0, 1, 0, 180deg);
  background: #000;
}

.do-info h3 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 10px;
  margin: 0 5px;
  padding: 40px 0 0 0;
  height: 70px;
  font-family: 'Open Sans', Arial, sans-serif;
  text-shadow: 0 0 1px #fff, 0 1px 2px rgba(0, 0, 0, 0.3);
}

.do-info-back {
  text-align: center;
}

.do-info-back > div {
  color: #fff;
  padding: 0px 5px;
  margin: 0 3px;
  font-size: 8px;
  border-top: 1px solid #fff;
}

.do-item:hover .do-info-wrap {
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8), inset 0 0 3px rgba(255, 255, 255, 0.8);
}

.do-item:hover .do-info {
  transform: rotate3d(0, 1, 0, -180deg);
}
</style>

</head>
<body>
<div class="container-fluid">
  <div class="row mt-3">
      
    <div class="col-3">
      <div class="do-item do-item-circle do-circle">
        <img src="https://picsum.photos/261/261" class="do-item do-circle">
        <div class="do-info-wrap do-circle">
          <div class="do-info">
            <div class="do-info-front do-circle"></div>
            <div class="do-info-back do-circle">
              <h3>Title Here</h3>
              <div>Description<br>
                 Author / Date</div>
            </div>
          </div>
        </div>
      </div>
    </div>
    <div class="col-3">
      <div class="do-item do-item-circle do-circle">
        <img src="https://picsum.photos/261/261" class="do-item do-circle">
        <div class="do-info-wrap do-circle">
          <div class="do-info">
            <div class="do-info-front do-circle"></div>
            <div class="do-info-back do-circle">
              <h3>Title Here</h3>
              <div>Description
                <br /> Author / Date</div>
            </div>
          </div>
        </div>
      </div>
    </div>
    <div class="col-3">
      <div class="do-item do-item-circle do-circle">
        <img src="https://picsum.photos/261/261" class="do-item do-circle">
        <div class="do-info-wrap do-circle">
          <div class="do-info">
            <div class="do-info-front do-circle"></div>
            <div class="do-info-back do-circle">
              <h3>Title Here</h3>
              <div>Description
                <br /> Author / Date</div>
            </div>
          </div>
        </div>
      </div>
    </div>
    <div class="col-3">
      <div class="do-item do-item-circle do-circle">
        <img src="https://picsum.photos/261/261" class="do-item do-circle">
        <div class="do-info-wrap do-circle">
          <div class="do-info">
            <div class="do-info-front do-circle"></div>
            <div class="do-info-back do-circle">
              <h3>Title Here</h3>
              <div>Description
                <br /> Author / Date</div>
            </div>
          </div>
        </div>
      </div>
    </div>

  </div>
</div>
<div id="bcl"><a style="font-size:8pt;text-decoration:none;" href="http://www.devanswer.com">Free Frontend</a></div>

</body>
</html>
Preview