Noone wants to create a website in more than 1 version for different devices. Since twitter 3 moves its default "fixed width" behaviour to "mobile first", all new layouts are using the fluid grid version. So you can use your layout on different devices like mobile, tablet, desktop and even cellphones.
So lets start:
At first we have to include the bootstrap (3.7.x) library. I m using cdn, to make it simple. In reality you want to require or import it, or use grunt or gulp as a dependency manager.
This is my html file "2_column_grid.html". I am using vs code to generate it.
This file contains 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> | |
<div class="container"> | |
<!-- This is one row with 2 columns. One column is 50 % (the half of 12 columns) --> | |
<div class="row"> | |
<div class="col-sm-6"> | |
<div class="demo-content">asdsad</div> | |
</div> | |
<div class="col-sm-6"> | |
<div class="demo-content">asdsad</div> | |
</div> | |
</div> | |
</div> | |
</body> | |
</html> |
Okay.Now we want to create a 4 column layout for medium screens with a resolution > 990 pixels (Laptops / Desktops)
This file contains 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> |
Now we want to create a 3 column layout, that will turn to a 2 column layout if the screen gets smaller.
This file contains 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> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-sm-3 col-md-2"> | |
<div class="demo-content">col-sm-12 col-md-2</div> | |
</div> | |
<div class="col-sm-9 col-md-8"> | |
<div class="demo-content">col-sm-9 col-md-8</div> | |
</div> | |
<div class="col-sm-12 col-md-2"> | |
<div class="demo-content">col-sm-12 col-md-2</div> | |
</div> | |
</div> | |
</div> | |
</body> | |
</html> |
Keine Kommentare:
Kommentar veröffentlichen