Created
August 2, 2016 15:49
-
-
Save pboethig/a59d64192095bf01049ebd00b3ab7e5c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<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 Two Column Grid Layouts for Tablets and Desktops</title> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.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"> | |
/* Some custom styles to beautify this example */ | |
.demo-content{ | |
padding: 15px; | |
font-size: 18px; | |
min-height: 300px; | |
background: #dbdfe5; | |
margin-bottom: 10px; | |
} | |
.demo-content.bg-alt{ | |
background: #abb1b8; | |
} | |
</style> | |
</head> | |
<body> | |
<!-- this creates a 3 column layout for medium devices like laptops and desktops with a resolution >990 pixels--> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-md-4"> | |
<div class="demo-content"> | |
.col-md-4 | |
</div> | |
</div> | |
<div class="col-md-4"> | |
<div class="demo-content"> | |
.col-md-4 | |
</div> | |
</div> | |
<div class="col-md-4"> | |
<div class="demo-content"> | |
.col-md-4 | |
</div> | |
</div> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment