index.html 5.84 KB
Newer Older
1
2
3
4
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
5
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
Zlatan Vasović's avatar
Zlatan Vasović committed
6
    <meta name="viewport" content="width=device-width, initial-scale=1">
7
8
    <meta name="description" content="">
    <meta name="author" content="">
9
    <link rel="icon" href="../../favicon.ico">
10

Nicole's avatar
Nicole committed
11
    <title>Grid Template for Bootstrap</title>
12
13

    <!-- Bootstrap core CSS -->
wangsai's avatar
wangsai committed
14
    <link href="../../dist/css/bootstrap.min.css" rel="stylesheet">
15
16

    <!-- Custom styles for this template -->
Nicole's avatar
Nicole committed
17
    <link href="grid.css" rel="stylesheet">
18

19
20
    <!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
    <script src="../../assets/js/ie10-viewport-bug-workaround.js"></script>
21
22
23
24
25
  </head>

  <body>
    <div class="container">

26
27
28
29
      <div class="page-header">
        <h1>Bootstrap grid examples</h1>
        <p class="lead">Basic grid layouts to get you familiar with building within the Bootstrap grid system.</p>
      </div>
30

31
32
      <h3>Three equal columns</h3>
      <p>Get three equal-width columns <strong>starting at desktops and scaling to large desktops</strong>. On mobile devices, tablets and below, the columns will automatically stack.</p>
33
      <div class="row">
34
35
36
        <div class="col-md-4">.col-md-4</div>
        <div class="col-md-4">.col-md-4</div>
        <div class="col-md-4">.col-md-4</div>
37
38
      </div>

39
40
      <h3>Three unequal columns</h3>
      <p>Get three columns <strong>starting at desktops and scaling to large desktops</strong> of various widths. Remember, grid columns should add up to twelve for a single horizontal block. More than that, and columns start stacking no matter the viewport.</p>
41
      <div class="row">
42
43
44
        <div class="col-md-3">.col-md-3</div>
        <div class="col-md-6">.col-md-6</div>
        <div class="col-md-3">.col-md-3</div>
45
46
      </div>

47
48
      <h3>Two columns</h3>
      <p>Get two columns <strong>starting at desktops and scaling to large desktops</strong>.</p>
49
      <div class="row">
50
51
        <div class="col-md-8">.col-md-8</div>
        <div class="col-md-4">.col-md-4</div>
52
53
      </div>

54
      <h3>Full width, single column</h3>
55
56
      <p class="text-warning">No grid classes are necessary for full-width elements.</p>

57
58
59
      <hr>

      <h3>Two columns with two nested columns</h3>
Julian Thilo's avatar
Julian Thilo committed
60
      <p>Per the documentation, nesting is easy—just put a row of columns within an existing column. This gives you two columns <strong>starting at desktops and scaling to large desktops</strong>, with another two (equal widths) within the larger column.</p>
61
      <p>At mobile device sizes, tablets and down, these columns and their nested columns will stack.</p>
62
      <div class="row">
63
64
        <div class="col-md-8">
          .col-md-8
65
          <div class="row">
66
67
            <div class="col-md-6">.col-md-6</div>
            <div class="col-md-6">.col-md-6</div>
68
69
          </div>
        </div>
70
        <div class="col-md-4">.col-md-4</div>
71
72
      </div>

73
74
75
76
77
      <hr>

      <h3>Mixed: mobile and desktop</h3>
      <p>The Bootstrap 3 grid system has four tiers of classes: xs (phones), sm (tablets), md (desktops), and lg (larger desktops). You can use nearly any combination of these classes to create more dynamic and flexible layouts.</p>
      <p>Each tier of classes scales up, meaning if you plan on setting the same widths for xs and sm, you only need to specify xs.</p>
78
      <div class="row">
79
80
        <div class="col-xs-12 col-md-8">.col-xs-12 .col-md-8</div>
        <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
81
82
      </div>
      <div class="row">
83
84
85
        <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
        <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
        <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
86
87
      </div>
      <div class="row">
88
89
        <div class="col-xs-6">.col-xs-6</div>
        <div class="col-xs-6">.col-xs-6</div>
90
91
      </div>

92
93
94
95
      <hr>

      <h3>Mixed: mobile, tablet, and desktop</h3>
      <p></p>
96
      <div class="row">
97
98
        <div class="col-xs-12 col-sm-6 col-lg-8">.col-xs-12 .col-sm-6 .col-lg-8</div>
        <div class="col-xs-6 col-lg-4">.col-xs-6 .col-lg-4</div>
99
100
      </div>
      <div class="row">
101
102
103
        <div class="col-xs-6 col-sm-4">.col-xs-6 .col-sm-4</div>
        <div class="col-xs-6 col-sm-4">.col-xs-6 .col-sm-4</div>
        <div class="col-xs-6 col-sm-4">.col-xs-6 .col-sm-4</div>
104
105
      </div>

106
107
108
      <hr>

      <h3>Column clearing</h3>
Mark Otto's avatar
Mark Otto committed
109
      <p><a href="http://getbootstrap.com/css/#grid-responsive-resets">Clear floats</a> at specific breakpoints to prevent awkward wrapping with uneven content.</p>
110
      <div class="row">
tomByrer's avatar
tomByrer committed
111
112
113
114
115
        <div class="col-xs-6 col-sm-3">
          .col-xs-6 .col-sm-3
          <br>
          Resize your viewport or check it out on your phone for an example.
        </div>
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
        <div class="col-xs-6 col-sm-3">.col-xs-6 .col-sm-3</div>

        <!-- Add the extra clearfix for only the required viewport -->
        <div class="clearfix visible-xs"></div>

        <div class="col-xs-6 col-sm-3">.col-xs-6 .col-sm-3</div>
        <div class="col-xs-6 col-sm-3">.col-xs-6 .col-sm-3</div>
      </div>

      <hr>

      <h3>Offset, push, and pull resets</h3>
      <p>Reset offsets, pushes, and pulls at specific breakpoints.</p>
      <div class="row">
        <div class="col-sm-5 col-md-6">.col-sm-5 .col-md-6</div>
        <div class="col-sm-5 col-sm-offset-2 col-md-6 col-md-offset-0">.col-sm-5 .col-sm-offset-2 .col-md-6 .col-md-offset-0</div>
      </div>
      <div class="row">
        <div class="col-sm-6 col-md-5 col-lg-6">.col-sm-6 .col-md-5 .col-lg-6</div>
        <div class="col-sm-6 col-md-5 col-md-offset-2 col-lg-6 col-lg-offset-0">.col-sm-6 .col-md-5 .col-md-offset-2 .col-lg-6 .col-lg-offset-0</div>
      </div>


139
140
    </div> <!-- /container -->

141
142
143
144

    <!-- Bootstrap core JavaScript
    ================================================== -->
    <!-- Placed at the end of the document so the pages load faster -->
145
146
  </body>
</html>