Four Column Convertible Grid Layouts with Multiple Views - HTML CSS Bootstrap

HTML CSS examples for Bootstrap:Grid Layout

Description

Four Column Convertible Grid Layouts with Multiple Views

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
 <head> 
  <meta charset="utf-8"> 
  <meta http-equiv="X-UA-Compatible" content="IE=edge"> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <title>Example of Bootstrap 3 Four Column Convertible Grid Layouts with Multiple Views</title> 
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>

  <style type="text/css">
    .demo-content{<!--  w  w w .  j a  va  2  s . com-->
        padding: 15px;
        font-size: 18px;
        min-height: 300px;
        background: #dbdfe5;
        margin-bottom: 30px;
    }
    .demo-content.bg-alt{
        background: #abb1b8;
    }
</style> 
 </head> 
 <body> 
  <div class="container"> 
   <div class="row"> 
    <div class="col-md-3 col-sm-6"> 
     <div class="demo-content">
      .col-md-3 .col-sm-6
     </div> 
    </div> 
    <div class="col-md-3 col-sm-6"> 
     <div class="demo-content bg-alt">
      .col-md-3 .col-sm-6
     </div> 
    </div> 
    <div class="clearfix visible-sm-block"></div> 
    <div class="col-md-3 col-sm-6"> 
     <div class="demo-content">
      .col-md-3 .col-sm-6
     </div> 
    </div> 
    <div class="col-md-3 col-sm-6"> 
     <div class="demo-content bg-alt">
      .col-md-3 .col-sm-6
     </div> 
    </div> 
   </div> 
  </div>   
 </body>
</html>

Related Tutorials