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
搜索网站排名专业的网络营销首选公司哪家好网站建设设计网络营销什么软件好使高端企业网站报价做网站怎么赚钱品牌情感营销案例北京企业建立网站支付宝的网络营销案例分析信息安全博士研究方向,-1世纪之末,资源匮乏,经济崩盘,各国剑拔弩张,即将展开世界大战,变故突如其来。 世界各地突然出现各种各样大小不一的漩涡之门,经过部分胆大之人的探索,发现它们通往不同的异世界,与此同时,人群中开始出现许多觉醒各种能力的人类,他们有的会喷火,有的会飞行,还有的会眼放激光。 拥有能够获得神奇物品和能力的他们成为了探索异世界的主力,世界的格局也因此发生变化魔尊李长风逃婚来到了人界,因贪恋人间美食被卷入一段段因果。 法师们目空一切,贵族们高高在上,大商会只手遮天;在这人吃人的世界里,我看到了深渊的触角,文明的退化,和微弱的希望。  李长生一觉醒来,成为了大明王朝菜市口的一名刽子手!   偏逢八百年大明朝妖魔横行,乾坤巨变之时,他发现自己斩杀死刑犯,可以获得各种的奖励!   望气术,养气术,占卜术,替死术,纸人术,敛息术,换脸术,傀儡术,医术,机关术……   上下几万年,漫漫仙道,无数魑魅魍魉一刀斩之,誓护我神州大地永世不衰!东方曜穿越洪荒,投靠刚建立不久的天庭,成为一名扫地仙。 同时获得签到系统,只要在不同的地方打卡,就可以拿到系统奖励。 “叮!恭喜宿主遣云宫打卡成功!” “获得大道玉佩!” “叮!毗沙宫打卡成功,获得【八九玄功】。” “叮!五明宫打卡成功,获得圣龙仙丹!” “叮!兜率宫打卡成功,获得先天灵果一枚。” …… 就这样,东方曜在众仙无视中在天庭签到了几百年。 直到有一天,下界妖族举兵来袭,天庭无人能敌。 他们一路杀到了凌霄宝殿,遇到了正在扫地的东方曜……[拔刀术。] [你手中的长刀有一米四的长度,十二点钟方向位,一米五的距离,一名法师角色正要对你发起攻击,请问你要如何在三秒钟拔出长刀,并将长刀架在敌人的脖子上?是否要抽刀进攻?] 景若如皱着眉仔细想了想,随后在答案上写道: “首先不能抽刀。刀鞘的摩擦会使拔刀的速度变慢。” “解:首先,左手现将刀鞘下压,右手以倾斜的角度握住刀把,再使大拇指对刀柄施加‘力’,右手握住刀把下拉,借助自己手上所施加的力与刀鞘口对着下方的力,长刀会快速出鞘。这里以普通人的速度大概是两秒左右。” “接着,将刚出鞘的长刀旋转,画出一个半圆,就能完美抵到那名法师的脖颈上。这个动作最多一秒。” 写完,景若如有些感叹,“这道题算得上是有些难度。” 看向下一题。 [伤口考验。] [如果你的长刀刺进了敌人的身体,但无法破防,你下一步最准确的做法应该是什么才能使敌人最大程度的受伤?] 景若如双眼一亮,送分题。这部小说内所说的世界与现实世界毫无关联。并且主角们所处的世界为异世界。 一座与外界没有任何联系的神秘城市——MT-X,能够不断侵蚀着被动者的感情。然而,最大的问题还是——没人能够逃离这所城市。 这里有一所学院,只要满足学院的规则毕业的人,就能够逃离这座MT-X,到城市外“无忧无虑”的生活。 藤升流星,作为一个特嫌麻烦而且没有任何梦想的人,被这座城市侵蚀了感情。 为了寻找感情之物而踏入这所规则为「杀人」的学院。 等待他的究竟是纯真无邪的爱之情感,还是深恶痛绝的恨之情感。 一切都要从遇见他的邻桌——『凝玉花利』开始…魔尊李长风逃婚来到了人界,因贪恋人间美食被卷入一段段因果。 霍泽穿越陌生朝代顺带着绑定了“写书成神”系统。 做的文抄公,写的妙笔花。 修为蹭蹭涨,宝物各处来。 还意外捡到一个貌美如花的小娘子。 “相公,人家也想做诰命夫人嘛!” 娘子的撒娇这谁顶得住啊。 修仙不如做官! 没想到本以为充满阴谋诡计的仕途却意外的顺利。 某一日,女帝退位,皇太女登基。 位极人臣的霍泽看着盛装登基的皇太女目瞪口呆。 娘子,诰命夫人已经不能满足你了吗? 居然登基做女帝? 本该在那个人身下殒命的陆空意外借助神器穿越回了几个月前完成重生。受尽屈辱,队友纷纷在自己面前倒下的屈辱让他咬牙切齿,这次,自以为拿着剧本的他就要把羞辱自己的人踩在脚下羞辱一番。可关键时刻竟然想不起那个人是谁了?不对,是完全忘了这几个月发生的所有事情。 “妈的小说也不是这么写的,老子重生了不应该手握剧本手刃仇人然后有头有脸的,现在让我什么鸡毛蒜皮的事情都想不起来,你是想第一章就太监是吗,好歹让我记住一个隔天中奖的彩票号码啊。”陆空对屏幕外扣字的那个死宅骂骂咧咧。 死宅却故作高深地说:“我只想做第一个吃螃蟹的人讲一个不同寻常的异能故事。” (新人作品,希望各位多多指教)
河北信息安全测评中心 敏感信息安全性 温州网站制作价格 网络营销什么软件好使 零食网络营销策划方案 海淀手机网站设计公司 网站托管套餐 做网站网站 网络营销理论首次提出 引擎营销教材 前世缘份的故事有哪些经典案例?咨询【www.richdady.cn】 化解咨询【www.richdady.cn】 脑部不清晰的咨询技巧咨询【www.richdady.cn】 性压抑的自我提升【www.richdady.cn】 如何提高孩子的阅读兴趣?【www.richdady.cn】 为什么过世的前世修行【www.richdady.cn】√转ihbwel 不爱读书的教育建议【www.richdady.cn】√转ihbwel 事业不顺的风水布局咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 头脑混沌的前世因果威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 迟缓儿的前世因果咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 与老公前世的故事分析咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 家庭关系的矛盾化解方法有哪些?【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 婴灵、邪灵、祖灵咨询咨询【www.richdady.cn】√转ihbwel 失业咨询【微:qq383550880 】√转ihbwel 干扰的预防与化解咨询【企鹅383550880】√转ihbwel 投资项目的财务规划咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 大龄剩女的改运方法【www.richdady.cn】√转ihbwel 孩子不爱读书的阅读习惯咨询【www.richdady.cn】√转ihbwel 前世缘份的缘分揭秘咨询【www.richdady.cn】√转ihbwel 前世今生的轮回真的存在吗?【微:qq383550880 】√转ihbwel 免费网站建设 百度一下 网络安全宣传周 主题 网络营销人才需求 国家信息安全管理体系审核员 网络安全 太极 网络安全系统中的身份认证技术应用及其发展 搜索网站排名 网络安全 实验 网络安全公司采购 海军工程大学信息安全 企业网站的特点 广州手机网站定制如何 网络安全认证机构 2017年360信息安全竞赛 2015汽车信息安全报 信息安全的基本原则 信息安全稽核通知 专业的网络营销首选公司哪家好 中国网络安全会议 网络营销人才需求 网络信息安全预警 网络营销网站怎样收费 网络安全采访感受 全网营销培训手机版免费申请微网站 网络安全认证机构 山东临沂网站建设 警惕网络窃密 构筑网络安全防火墙 山东临沂网站建设 绵阳房产网站建设 网络信息安全服务能力,-1 广州手机网站定制如何 中央网信办网络安全应急指挥中心 呼叫中心信息安全规范 高端企业网站报价 信息安全知名企业排名 计算机网络安全培训 企业网站的特点 支付宝的网络营销策划 信息安全部官网 做网站网站 模板网站建设 信息安全的基本原则 电子商务网络营销 网络及信息安全设计 引擎营销教材 网络安全 实验 网站设计教程 中国信息安全管理体系 信息安全大赛 题目 长春网站建设 网站报价书 腾讯信息安全实验室 做网站的文案 网络安全周报道 网站信息安全维护协议 上海营销型网站制作 海淀手机网站设计公司 2016信息安全 网络安全 太极 零食网络营销策划方案 网络安全竞赛平台 网络安全系统中的身份认证技术应用及其发展 静安区品牌网站建设 网络安全认证机构 信息安全的基本原则 北京网站排名制作 无锡谁会建商务网站 上海网站建设的价格 成都网络安全发展 回顾2012年重大网络安全事件 国家开放大学信息安全学院 网站jianshe 优优营销软件站 信息安全博士研究方向,-1 警惕网络窃密 构筑网络安全防火墙 网络营销与消费心理 中国信息安全公司有哪些 网络安全信息共享 兴化网站制作 网络安全宣传周 主题 网络安全技术包括 网络信息安全服务能力,-1 网络信息安全预警 微信网站方案 网站建设设计 网站信息安全维护协议 网络营销网站怎样收费 html5响应式网站 如何用网络营销的方法有哪些方法有哪些 2015汽车信息安全报 上海网络安全公司 国家企业信息安全系统 河南省第二届信息安全 零食网络营销策划方案 html5响应式网站 二A信息安全院校排名 网络安全公司采购 营销是 营销是 山东临沂网站建设 做网站收费 营销步骤 军用信息安全产品测评中心 网络营销人才需求 自助建设分销商城网站 石家庄手机建网站 顺德新网站建设 代理商营销 品牌情感营销案例 广州顶尖网络推广营销方案 海军工程大学信息安全 专业信息安全服务资质咨询,-1 二A信息安全院校排名 电商平台网络营销方案 网络营销与消费心理 长春网站建设 公司网站规划案例 网络营销网站怎样收费 信息安全知名企业排名 广州产品营销公司 支付宝的网络营销案例分析 网络安全与隐私原理 网络安全 屏蔽 网络安全行业研究报告 信息安全等级评测资质 温州网站制作价格 广州产品营销公司 微博营销的好处和坏处 河北信息安全测评中心 如何用网络营销的方法有哪些方法有哪些 2013中国信息安全大会 顺德新网站建设 佛山网站优化 信息安全深圳 网络安全态势感知 外文