Dieses Blog durchsuchen

Dienstag, 2. August 2016

Mobile first gridlayouts with twitter boostrap 3

Today we want to play a little with mobile first grid layouts.

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.



<!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>
view raw 2 column hosted with ❤ by GitHub
This simple grid renders 2 Boxes with the 6 columns (col-sm-6). That means, that each box takes the half of the windowwitdh. 100 % are 12 columns. So 12 / 6 = 2. If you want to have 4 boxes you have user 3 columns. (col-sm3) and so on.



Okay.Now we want to create a 4 column layout for medium screens with a resolution > 990 pixels (Laptops / Desktops)
<!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>
view raw 4 column hosted with ❤ by GitHub


Now we want to create a 3 column layout, that will turn to a 2 column layout if the screen gets smaller.

<!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