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
学网站前端2016企业信息安全事件珠海电商网站制作国家信息安全师有用吗新网络安全专题网站后台添加内容网页不显示酷网站欣赏网络安全关键字如何提高网络安全广州南方信息安全产业基地有限公司如果看小说累的话,就来看看诗吧,偶尔写写小诗,偶尔让生活多些浪漫修仙难,一看天赋,二看机缘,三看身家。 王耀穿越而来,却成为一介天赋全无的边远村民。 且看王耀如何以妖入道,踏上仙徒,巧妙周旋,化险为夷。 凭借一腔热血,二世为人,成就三界功绩,四世威名!2009年到2021年间,g城作为改革开放后迅速崛起的沿海城市之一,政治经济快速发展,商界奇才、慈善大家、教育大亨······齐聚在g城,由此展开一场场腥风血雨的争斗······ 不懂武功的男主在得到一本神秘棋谱后卷入江湖仇杀。伴随着棋谱的不断出现,武林到处都是腥风血雨。众多朋友为此而牺牲,男主发誓要剥开背后的云雾重现青天。 叮咚~ 恭喜宿主,吹牛皮系统已为您绑定…… 叮咚~ 恭喜宿主,已经完成九千九百九十七个吹牛任务,还差三个即可获得进阶大礼包?1 叮咚~ 恭喜宿主获得霸体诀?1…获得蛮荒剑诀?1…获得至尊龙神体质……获得幽缈步?1……破虎拳? 1……本部由五十个不同故事组成的短篇恐怖小说年少不经事,今朝登天门。石庆猛,原名石猛。1993年6月21日出生在罗溪村7组,2014年10月1日正式发布小说,以笔名石庆猛活动在文学界,可以说文网中一朵未绽放的花朵,其作品包括诗歌、传记、短篇小说、长篇小说。混沌凶兽,千古一佛,妖祸魔灾,圣佛救世。 渡天之劫,逆天之行;乱世风云涌,妖祸兴魔灾。 顺天之命,应天之道;邪魅鬼鲛行,不改诛魔志。无
病毒性营销常用的工具包括(). 信息安全体系是什么,-1 南京网络营销 外卖营销方式 提供常州网站建设公司 网站设计案例 精准营销网 深圳市能士信息安全有限公司 网站架构图 昆明网站开发报价 与老公前世的前世修行【www.richdady.cn】 升迁障碍的咨询技巧咨询【www.richdady.cn】 前世今生【www.richdady.cn】 自闭症的康复训练【www.richdady.cn】 前世老公的识别方法【www.richdady.cn】 财运不佳的财富积累咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 亲子关系的教育建议咨询【企鹅383550880】√转ihbwel 如何改善亲子关系?咨询【企鹅383550880】√转ihbwel 如何知道自己有前世缘份?咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 亲子关系的咨询技巧【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 前世缘份的故事有哪些真实经历?咨询【σσЗ8З55О88О√转ihbwel 莫名其妙感伤的原因分析咨询【σσЗ8З55О88О√转ihbwel 官司的法律援助咨询【企鹅383550880】√转ihbwel 外灵的干扰特征威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 与公婆前世的影响分析咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 学习成绩差的解决方法【微:qq383550880 】√转ihbwel 感情纠纷的解决技巧威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 外灵干扰的自我提升威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 前世缘份对现世的影响【企鹅383550880】√转ihbwel 有官司的解决方法咨询【www.richdady.cn】√转ihbwel 北京做网站公司 珠海电商网站制作 网络营销站点域名采用"企业网站域名/产品名或营销页面名"的形式属于 外贸营销型网站 公共网络安全 网络安全意识培训目的 网络安全等级保护标准 信息网络安全知多少 怎么建网站 网站设计官网 信息交流与网络安全 网站设计遇到难题 网络信息安全主管部门,-1 电子邮件营销基本方法 番禺网站建设服务 国家信息安全师有用吗 网络安全法 正式 网站开发流程 网站设计案例 营销数据专家网 网络营销课程设计总结 上海网站优化 网络安全科技公司 网络安全体系建设方案 武汉网站维护 成都市华为存储网络安全有限公司 常州网站制作 网络安全发展战略 win10 360网络安全防护 教育行业信息安全风险 东莞百度网站推广 小迪网络安全渗透培训 网络营销服务有哪些方面 冷色调网站 网络安全与加密 网络营销用不用考研 烟台制作网站的公司 网络安全是什么战略 网络安全关键字 烟台制作网站的公司 网站建设公司 南京 广州网站建设公司招聘 郑州网站制作电话 网络安全app 做网站销售 病毒营销 案例 近年 深圳网站建设新闻 网站营售 网络营销站点域名采用"企业网站域名/产品名或营销页面名"的形式属于 信息安全等级培训 中国网络安全形势 中国网络安全形势 深圳集团网站建设报价 国际网络安全日 病毒营销 案例 近年 网络安全法 正式 常州网站制作 徐州html5响应式网站建设 网络安全促进委员会 如何提高网络安全 公司信息安全 系统 玩具外贸网站模板 wap网站制作 上海网站优化 网络营销课程设计总结 精准营销网 信息管理与信息系统 信息安全 长沙哪里做网站好 华为网络安全认证证书 淄博做网站推广哪家好 佛山网站建设怎样做 联想信息安全服务资质 信息安全是什么类 网络信息安全主管部门,-1 农业网站模板 网站建设公司 南京 邢台网站建设服务商 国内网络安全形势 做网站销售 计算机信息安全系统是指 网站后台添加内容网页不显示 wap网站制作 win2008网络安全 网络安全科技公司 淄博做网站推广哪家好 网络营销用不用考研 网络安全是什么战略 信息安全应聘岗位 东莞网站策划 关于网络营销策略 全面的郑州网站建设 网络安全控制器 如何建立一个网站 华为网络安全认证证书 公司信息安全 系统 国内网络安全形势 银川做网站 无锡网站建 报考互联网信息安全学互联网营销会后悔吗 报考互联网信息安全学互联网营销会后悔吗 小迪网络安全渗透培训 阿图什网站 华为网络安全认证证书 东莞百度网站推广 中国信息安全测评中心 上级主管部门 诺一网络营销联邦信息安全管理法 网络营销相关资讯 信息管理与信息系统 信息安全 郑州网站制作电话 如何提高网络安全 深圳市能士信息安全有限公司 美国网络安全立法 重庆网络安全测评机构医院网络营销重要性 网络安全归哪个部门管 东营市报名系统网站设计公司 2015信息安全报告制度 中国网络安全形势 长沙哪里做网站好 淄博做网站推广哪家好 深圳网站建设新闻 信息安全应聘岗位 网络安全等级保护标准 网站架构图 win2008网络安全 双线网站 广州网站设计公司排名云创通11营销手机 南京网络营销 武威网站建设 电子邮件营销基本方法 我国服装企业网络品牌的营销策略分析——基于凡客诚品品牌案例分析 建宣传网站 如何建立一个网站 江苏的网络安全公司 网络安全科技公司 网络营销用不用考研