-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgrid.html
More file actions
97 lines (86 loc) · 3.93 KB
/
grid.html
File metadata and controls
97 lines (86 loc) · 3.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<!-- per occupare tutto usare container fluid-->
<div class="container-fluid">
<div class="row">
<div class="col-md-9 col-md-push-3">
<h3>Content</h3>
<p>Build on the previous example by creating even more dynamic and powerful layouts with tablet .col-sm-* classes. </p>
<p>Build on the previous example by creating even more dynamic and powerful layouts with tablet .col-sm-* classes. </p>
<p>Build on the previous example by creating even more dynamic and powerful layouts with tablet .col-sm-* classes. </p>
<p>Build on the previous example by creating even more dynamic and powerful layouts with tablet .col-sm-* classes. </p>
<p>Build on the previous example by creating even more dynamic and powerful layouts with tablet .col-sm-* classes. </p>
</div>
<div class="col-md-3 col-md-pull-9">
<h3>Sidebar</h3>
<p>Build on the previous example by creating even more dynamic and powerful layouts with tablet .col-sm-* classes. </p>
</div>
</div>
</div>
<hr>
<div class="container-fluid ">
<div class="row">
<div class="col-sm-8 col-sm-offset-2 col-xs-8 col-xs-offset-4">
<p>Build on the previous example by creating even more dynamic and powerful layouts with tablet .col-sm-* classes. </p>
<p>Build on the previous example by creating even more dynamic and powerful layouts with tablet .col-sm-* classes. </p>
<p>Build on the previous example by creating even more dynamic and powerful layouts with tablet .col-sm-* classes. </p>
<p>Build on the previous example by creating even more dynamic and powerful layouts with tablet .col-sm-* classes. </p>
</div>
</div>
<hr>
<div class="row">
<!--- sm = tablet. xs smartphone! md = destop ( se non setto prende md per desktop) -->
<div class="col-sm-4 col-xs-6 col-md-6">
Build on the previous example by creating even more dynamic and powerful layouts with tablet .col-sm-* classes.
</div>
<div class="col-sm-4 col-xs-6 col-md-3">
Build on the previous example by creating even more dynamic and powerful layouts with tablet .col-sm-* classes.
</div>
<div class="col-sm-4 col-xs-12 col-md-3">
Build on the previous example by creating even more dynamic and powerful layouts with tablet .col-sm-* classes.
</div>
</div>
<hr>
<div class="row">
<div class="col-md-2">
Build on the previous example by creating even more dynamic and powerful layouts with tablet .col-sm-* classes.
</div>
<div class="col-md-3">
Build on the previous example by creating even more dynamic and powerful layouts with tablet .col-sm-* classes.
</div>
<div class="col-md-7">
Build on the previous example by creating even more dynamic and powerful layouts with tablet .col-sm-* classes.
</div>
</div>
<hr>
<div class="row">
<div class="col-xs-2">
Build on the previous example by creating even more dynamic and powerful layouts with tablet .col-sm-* classes.
</div>
<div class="col-xs-10">
Build on the previous example by creating even more dynamic and powerful layouts with tablet .col-sm-* classes.
</div>
</div>
<hr>
<div class="row">
<div class="col-lg-9">
Build on the previous example by creating even more dynamic and powerful layouts with tablet .col-sm-* classes.
</div>
<div class="col-lg-3">
Build on the previous example by creating even more dynamic and powerful layouts with tablet .col-sm-* classes.
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>