You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<h1>Fluid grid system <small>12 responsive, percent-based columns</small></h1>
216
+
</div>
217
+
218
+
<h2>Fluid columns</h2>
219
+
<divclass="row-fluid show-grid">
220
+
<divclass="span1">1</div>
221
+
<divclass="span1">1</div>
222
+
<divclass="span1">1</div>
223
+
<divclass="span1">1</div>
224
+
<divclass="span1">1</div>
225
+
<divclass="span1">1</div>
226
+
<divclass="span1">1</div>
227
+
<divclass="span1">1</div>
228
+
<divclass="span1">1</div>
229
+
<divclass="span1">1</div>
230
+
<divclass="span1">1</div>
231
+
<divclass="span1">1</div>
232
+
</div>
233
+
<divclass="row-fluid show-grid">
234
+
<divclass="span4">4</div>
235
+
<divclass="span4">4</div>
236
+
<divclass="span4">4</div>
237
+
</div>
238
+
<divclass="row-fluid show-grid">
239
+
<divclass="span4">4</div>
240
+
<divclass="span8">8</div>
241
+
</div>
242
+
<divclass="row-fluid show-grid">
243
+
<divclass="span6">6</div>
244
+
<divclass="span6">6</div>
245
+
</div>
246
+
<divclass="row-fluid show-grid">
247
+
<divclass="span12">12</div>
248
+
</div>
249
+
250
+
<divclass="row">
251
+
<divclass="span4">
252
+
<h3>Percents, not pixels</h3>
253
+
<p>The fluid grid system uses percents for column widths instead of fixed pixels. It also has the same responsive variations as our fixed grid system, ensuring proper proportions for key screen resolutions and devices.</p>
254
+
</div>
255
+
<divclass="span4">
256
+
<h3>Fluid rows</h3>
257
+
<p>Make any row fluid simply by changing <code>.row</code> to <code>.row-fluid</code>. The columns stay the exact same, making it super straightforward to flip between fixed and fluid layouts.</p>
258
+
</div>
259
+
<divclass="span4">
260
+
<h3>Markup</h3>
261
+
<preclass="prettyprint linenums">
262
+
<div class="row-fluid">
263
+
<div class="span4">...</div>
264
+
<div class="span8">...</div>
265
+
</div>
266
+
</pre>
267
+
</div>
268
+
</div><!-- /row -->
269
+
270
+
<h2>Fluid nesting</h2>
271
+
<divclass="row">
272
+
<divclass="span6">
192
273
<p>Nesting with fluid grids is a bit different: the number of nested columns doesn't need to match the parent. Instead, your columns are reset at each level because each row takes up 100% of the parent column.</p>
@@ -281,8 +371,8 @@ <h1>Layouts <small>Basic templates to create webpages</small></h1>
281
371
<divclass="span6">
282
372
<h2>Fixed layout</h2>
283
373
<p>The default and simple 940px-wide, centered layout for just about any website or page provided by a single <code><div class="container"></code>.</p>
284
-
<divclass="minicon-layout">
285
-
<divclass="minicon-layout-body"></div>
374
+
<divclass="mini-layout">
375
+
<divclass="mini-layout-body"></div>
286
376
</div>
287
377
<preclass="prettyprint linenums">
288
378
<body>
@@ -295,9 +385,9 @@ <h2>Fixed layout</h2>
295
385
<divclass="span6">
296
386
<h2>Fluid layout</h2>
297
387
<p><code><div class="container-fluid"></code> gives flexible page structure, min- and max-widths, and a left-hand sidebar. It's great for apps and docs.</p>
0 commit comments