1
1
1
1
1
1
1
1
1
1
1
1
4
4
4
4
8
6
6
12

The default grid system provided as part of Bootstrap is a 940px-wide, 12-column grid.

It also has four responsive variations for various devices and resolutions: phone, tablet portrait, table landscape and small desktops, and large widescreen desktops.

<div class="row">
  <div class="span4">...</div>
  <div class="span8">...</div>
</div>

As shown here, a basic layout can be created with two "columns," each spanning a number of the 12 foundational columns we defined as part of our grid system.


Offsetting columns

4
4 offset 4
3 offset 3
3 offset 3
8 offset 4
<div class="row">
  <div class="span4">...</div>
  <div class="span4 offset4">...</div>
</div>

Nesting columns

With the static (non-fluid) grid system in Bootstrap, nesting is easy. To nest your content, just add a new .row and set of .span* columns within an existing .span* column.

Example

Nested rows should include a set of columns that add up to the number of columns of it's parent. For example, two nested .span3 columns should be placed within a .span6.

Level 1 of column
Level 2
Level 2
<div class="row">
  <div class="span12">
    Level 1 of column
    <div class="row">
      <div class="span6">Level 2</div>
      <div class="span6">Level 2</div>
    </div>
  </div>
</div>

Fluid columns

1
1
1
1
1
1
1
1
1
1
1
1
4
4
4
4
8
6
6
12

Percents, not pixels

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.

Fluid rows

Make any row fluid simply by changing .row to .row-fluid. The columns stay the exact same, making it super straightforward to flip between fixed and fluid layouts.

Markup

<div class="row-fluid">
  <div class="span4">...</div>
  <div class="span8">...</div>
</div>

Fluid nesting

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.

Fluid 12
Fluid 6
Fluid 6
<div class="row-fluid">
  <div class="span12">
    Level 1 of column
    <div class="row-fluid">
      <div class="span6">Level 2</div>
      <div class="span6">Level 2</div>
    </div>
  </div>
</div>
Variable Default value Description
@gridColumns 12 Number of columns
@gridColumnWidth 60px Width of each column
@gridGutterWidth 20px Negative space between columns
@siteWidth Computed sum of all columns and gutters Counts number of columns and gutters to set width of the .container-fixed() mixin

Variables in LESS

Built into Bootstrap are a handful of variables for customizing the default 940px grid system, documented above. All variables for the grid are stored in variables.less.

How to customize

Modifying the grid means changing the three @grid* variables and recompiling Bootstrap. Change the grid variables in variables.less and use one of the four ways documented to recompile. If you're adding more columns, be sure to add the CSS for those in grid.less.

Staying responsive

Customization of the grid only works at the default level, the 940px grid. To maintain the responsive aspects of Bootstrap, you'll also have to customize the grids in responsive.less.

Fixed layout

The default and simple 940px-wide, centered layout for just about any website or page provided by a single <div class="container">.

<body>
  <div class="container">
    ...
  </div>
</body>

Fluid layout

<div class="container-fluid"> gives flexible page structure, min- and max-widths, and a left-hand sidebar. It's great for apps and docs.

<div class="container-fluid">
  <div class="row-fluid">
    <div class="span2">
      <!--Sidebar content-->
    </div>
    <div class="span10">
      <!--Body content-->
    </div>
  </div>
</div>

Responsive devices

What they do

Media queries allow for custom CSS based on a number of conditions—ratios, widths, display type, etc—but usually focuses around min-width and max-width.

  • Modify the width of column in our grid
  • Stack elements instead of float wherever necessary
  • Resize headings and text to be more appropriate for devices

Use media queries responsibly and only as a start to your mobile audiences. For larger projects, do consider dedicated code bases and not layers of media queries.

Supported devices

Bootstrap supports a handful of media queries in a single file to help make your projects more appropriate on different devices and screen resolutions. Here's what's included:

Label Layout width Column width Gutter width
Smartphones 480px and below Fluid columns, no fixed widths
Smartphones to tablets 767px and below Fluid columns, no fixed widths
Portrait tablets 768px and above 42px 20px
Default 980px and up 60px 20px
Large display 1200px and up 70px 30px

Requires meta tag

To ensure devices display responsive pages properly, include the viewport meta tag.

<meta name="viewport" content="width=device-width, initial-scale=1.0">

Using the media queries

Bootstrap doesn't automatically include these media queries, but understanding and adding them is very easy and requires minimal setup. You have a few options for including the responsive features of Bootstrap:

  1. Use the compiled responsive version, bootstrap-responsive.css
  2. Add @import "responsive.less" and recompile Bootstrap
  3. Modify and recompile responsive.less as a separate file

Why not just include it? Truth be told, not everything needs to be responsive. Instead of encouraging developers to remove this feature, we figure it best to enable it.

// Landscape phones and down
@media (max-width: 480px) { ... }
// Landscape phone to portrait tablet
@media (max-width: 768px) { ... }
// Portrait tablet to landscape and desktop
@media (min-width: 768px) and (max-width: 980px) { ... }
// Large desktop
@media (min-width: 1200px) { .. }

Responsive utility classes

What are they

For faster mobile-friendly development, use these basic utility classes for showing and hidding content by device.

When to use

Use on a limited basis and avoid creating entirely different versions of the same site. Instead, use them to complement each device's presentation.

For example, you might show a <select> element for nav on mobile layouts, but not on tablets or desktops.

Support classes

Shown here is a table of the classes we support and their effect on a given media query layout (labeled by device). They can be found in responsive.less.

Class Phones 480px and below Tablets 767px and below Desktops 768px and above
.visible-phone Visible
.visible-tablet Visible
.visible-desktop Visible
.hidden-phone Visible Visible
.hidden-tablet Visible Visible
.hidden-desktop Visible Visible

Test case

Resize your browser or load on different devices to test the above clases.

Visible on...

  • Phone✔ Phone
  • Tablet✔ Tablet
  • Desktop✔ Desktop

Hidden on...

  • Phone✔ Phone
  • Tablet✔ Tablet
  • Desktop✔ Desktop
网络信息安全领导小组网络营销定价方案网络营销模式发展现状互联网营销软件有哪些内容美国网络安全框架 pdf福建省信息网络安全信息安全等级测评报告案例电子科技公司网站网页设计如何优化网站网络安全从业人员 不可明状的存在将地星扩大一百倍,整个世界都被游戏数据化。 远古的存在开始回归,混沌中有异族在蠢蠢欲动。 这是大秦猛卒与盛唐羽林军的争霸,也是魏武卒与陷阵营的碰撞。 当斯巴达勇士遇上黄巾力士,当教廷的十字远征军碰上蒙古铁骑...... 象兵、铁浮屠、维京海盗......人类、兽族、异族侵袭....... 谁,才是诸天最强文明?本书是一部都市职场言情小说,主人翁平平无奇,但却一跃成为医美机构的CEO。在鸱张鱼烂的皮囊下,医美、媒体、帮会的内幕,情欲的渴望,感情的纠葛、人性的弱点,都是社会最真实的写照。小丽?哪个小丽?咳!咳!就是你们知道的那个小丽! 小丽还是离开了这个物欲横流的沿海城市! 偌大的火车站,只留下小祥孤独的身影! 小张:你一个中职生,还玩脚踩两只船的把戏,玩就玩吧,还跟那种女人,滚吧! 父亲:畜生!你敢出这个家门,有本事就别回来~ 母亲:小祥,啥样的女孩,你不能挑?你偏偏选那种的,那种人能领进门吗? 女友的蔑视、父亲的痛骂、母亲的乞求~ 小祥还是毅然决然地坐上了去云贵的绿皮火车! 他要去跟他的青春告个别! 看一眼小丽,再看一眼她嫁的老实人! 朴素的婚宴上,小丽看到熟悉的身影,追着跑过来! 崎岖的山头,二人不慎失足,双双跌落山崖! 谁知,醒来时竟穿越到宋朝~ 叮!叮!叮! 【检测到宿主已穿越,赏赐宋朝百科全书一套!】其实每个人的心中都有遗憾简介:邓家国本是一个普普通通的古董店老板,靠着贩卖虚假的古董混日子,不料在某一天被一老太婆讹走房租,又被客人指认卖虚假古董,为此倾家荡产,不得已,邓家国只好与何萧等人一起盗墓,本以为盗墓是一件轻松又赚钱的活,却不曾想到他竟差点葬身此事,周围伙伴的接连“殉职”让他的心态发生了微妙的变化,最终,他会做出怎样的抉择呢?是继续盗墓,还是……闫卫国是一名刑警,曾经有一个美满的家庭。 因为毒犯的报复女儿从三楼坠落,摔成了植物人,护理费渐渐的拖垮了家庭。 闫卫国一直追查不到凶手下落,陷入了深深自责,长期借酒浇愁导致他的右手抖动,在一次任务中因为握不稳枪让毒犯在自己的面前逃脱,致使卧底同事暴露惨死。 在面对开除处分,老婆自杀,女儿抢救的多重压力下,他想要自我了结,却遇到了一个怪人。 怪人称有办法送闫卫国回到女儿出事当天挽回这一切,只要他肯冒险。 闫卫国决定放手一搏,但他能成功吗,又会发生什么意外呢。 新人试水,已腹稿完结,猜到结局的请联系作者,赠送女主一份包邮。 懒得介绍嘘,不要出声,它来了……快躲起来,闭上眼睛,不要看它…… 你看到它的话,它会害怕……武林盟主的儿子是个练武废柴 意外觉醒,竟然可以隐身了!!! 父亲被暗杀,从此走上了练武复仇的道路。 命运多舛的少年,不谙世事的灵智,两者的结合在九州大陆掀起了阵阵腥风血雨。 在这里也许会看到华夏神话的延续,也许会看到超强的灵宝,也许会看到上古遗迹,也许会看到各种稀奇古怪的异兽,也许会看到魔之本相……
企业网站建设定制 亚马逊服务营销策略 商业网站模板 网站建设系统 营销传播的概念 邵阳做网站 淘宝服装店营销策划 网络安全 异常检测 信息安全取证,-1 政府如何应对网络安全 内心恐惧胆怯的前世因果咨询【www.richdady.cn】 事业不顺的风水布局咨询【www.richdady.cn】 亲子关系的心理建设【www.richdady.cn】 构建和谐亲子关系的方法有哪些?咨询【www.richdady.cn】 感情纠纷的情感调解【www.richdady.cn】 孩子学习不好咨询【微:qq383550880 】√转ihbwel 纠纷的法律援助咨询【www.richdady.cn】√转ihbwel 发育倒退的早期干预措施【www.richdady.cn】√转ihbwel 有官司的心理调适【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 人际关系不好的前世记忆【www.richdady.cn】√转ihbwel 家庭关系的心理调适方法有哪些?咨询【企鹅383550880】√转ihbwel 与公婆前世咨询【σσЗ8З55О88О√转ihbwel 灵魂化解咨询【σσЗ8З55О88О√转ihbwel 提高情商的方法咨询【www.richdady.cn】√转ihbwel 缺心眼的前世因果咨询【www.richdady.cn】√转ihbwel 缺心眼的表现及成因【企鹅383550880】√转ihbwel 如何避免无形干扰因素咨询【企鹅383550880】√转ihbwel 孩子不爱读书的阅读习惯如何培养?咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 前世缘份的缘分解读咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 前世今生的修行案例咨询【www.richdady.cn】√转ihbwel 信息安全等级测评报告案例 乐清网站优化推广 信息安全领域知名企业 优秀网页设计网站 宝石汇网站 传统营销和内容营销 淘宝服装店营销策划 网店营销培训 邵阳做网站 许可营销工具有哪些? 网络推广营销系统 中央企业网络安全 网络营销应用知识 网站建设系统 网络营销的价值在于 2016网络营销关键词 校园 网络安全 乐清网站优化推广 信息安全领域知名企业 优秀网页设计网站 宝石汇网站 传统营销和内容营销 淘宝服装店营销策划 网店营销培训 邵阳做网站 许可营销工具有哪些? 网络推广营销系统 中央企业网络安全 网络营销应用知识 网站建设系统 重庆旅游网站建设 库易网网站 信息安全评测 名单 模仿网站建设 网站建设排版页面 宝石汇网站 网络营销的价值在于 潍坊网站建设公司推荐 网络营销人 营销和行销 乐清网站制作推广 如何优化网站 互联网传统营销模式有哪些 电子商务型网站 2016网络营销关键词 公司信息安全方法 信息安全取证,-1 网店营销培训 厦门百度网站建设 桂林网站建设 免费手机个人网站 模仿网站建设 武汉手机网站建设咨询 亚马逊服务营销策略 成都网站建设市场分析 营销痛点 信息安全专家证书 潍坊网站建设公司推荐 商业网站模板 宝安网站建设公司 龙岗做网站网络安全综合实验 销售观念的营销手段是 建网站的公司哪家好 营销传播的概念 网络安全 资源平台 公司信息安全方法 网络营销包括哪些营销 网络安全数据报告 福建省信息网络安全 1. 什么是网络营销 库易网网站 免费手机个人网站 济南建设网站的公司吗 b2b外贸网站 信息安全安全前沿技术有哪些 营销优势有哪些方面 网络安全 异常检测 电子科技公司网站网页设计 桂林网站建设 龙岗做网站网络安全综合实验 近年来互联网用户变化的情况分析而这些变化对企业网络营销的影响? 网络营销的理论包括 网络安全监测 搜索引擎营销目标 如何设计网站域名 企业网站建设定制 移动商务营销案例 校园 网络安全 营销优势有哪些方面 信息安全服务有哪些 第七届信息安全漏洞分析与风险评估大会 长春作网站 营销小常识 信息安全审计内容,-1 信息安全黑客吗 中央企业网络安全 1. 什么是网络营销 病毒式营销要点 信息安全简介,-1 萍乡网站建设 病毒式线上营销方案 山东大学信息安全排名 2017网络安全展会 企业网络安全问题 长沙微信网站公司 网站分为哪几类 百分百短信营销系统互联网营销目的 忻州做网站 网站速度 新媒体企业微信营销成功案例 网络营销的理论包括 营销小常识 乐清网站优化推广 ecshop网站里面有伪静态页面还有部分动态页面不是作弊吧 网络营销定价方案 网络安全是指通过 建立网站原则 长沙微信营销推广平台 网站套餐网页 宝石汇网站 忻州做网站 推广及建设网站 客户型网站 营销和行销 北京公司网站建设报价 美国网络营销人员工资 东莞专业网站制作设计 电子商务型网站 山东大学信息安全排名 快速设计网站 宝鸡网站建设 营销流行语 企业网络安全解决案例分析基于路由器防火墙的网络安全构建 建站视频教程全套 asp网站源码网页制作设计建设视频教程百度云 武汉网站建设