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
企业展示型网站怎么建合肥公安部信息安全上海做网站 公司旅游网络营销方案设计成都 企业 网站建设食品类b2c网络营销国家信息安全中心主任华为 网络安全特性专注合肥网站建设信息安全产品分类标准亦木墟历练归来时见到家族覆灭,发誓欲要血刃仇敌,报其家恨。 闯秘境,夺至宝,守边疆,战万族。 沧海一粟,修行千秋,蝼蚁尚且贪命,诸天生灵皆在争渡。 一颗黑球可炸山镇海,一杆长枪可斩万千神明。 是非对错唯有强者定义,弱者只配臣服。 武道九重,上为天地境。 当末法时代结束,修行元气重归上古。 整个修士界,皆因亦木墟的一颗轰天雷,即将暴走...我女友的性格非常冷傲,但是在我面前,她却有着另一面……自从遇到了闷骚这个道士后,我的世界似乎发生了一些变化…修行是一条茫茫无尽的道路,路上没有长生的喜悦,有的只是无尽的枯寂与落寞,三年前问心路上,学院问我,为何要修行,实际上我撒谎了,我只是想好好活下去,能像从前一样回到自己师父师娘身边,跟明月一起坐在清风山顶的大石头上看日出何为仙,何为魔?混沌初开,天地一体,何分神魔!不世天骄,欲合二道,夺天地之造化,逆大道之轮回,造无上之法典,奈何天地无情,身消道陨,而无上法典也不知所踪......桂州城江家废物少爷江谪在机缘巧合之下获得一奇特玉佩,从此纳仙魔二道,化己身为混沌,踏云梯,碎苍天,只手可握天地间!平行世界恐怖游戏降临,全人类笼罩在阴霾之中,苏毅穿越平行大陆,召唤九大鬼王,狂推各类副本。 笔仙:苏毅真的狗,跟几只鬼王把我通灵出来,笔被他折断,换成了电笔。 贞子:我正从电视往外爬呢,苏毅的鬼王就把我电给拔了,卡在电视当间不说,愣生生扯着头发将我拽了出来。 湘西铜甲尸:苏毅非说我身上的是古董,把我铜甲扒了,要上交国家! 苏毅通关了副本榜所有高难度副本,自此副本里的鬼物抱团取暖。 “坚持下来,活下去!”有着一群不为我们所知的人,他们被称为玄元者,他们生活在这个世界,却不与我们现同,他们的故事也鲜为人知。天地不仁,以万物为刍狗;帝王封建,以百姓为刍狗…… 在人类历史伟大的祭坛之上,满是殉难者了无生气的空壳;生命之火早已弃之而去,短暂的辉煌之后便是永久的沉寂…… 这,就是刍狗的宿命,千百年来从未改变…… 如果有一股不知名的力量萃聚进而复活所有星星点点的余烬,那么这份光芒可否感染幽暗无垠的苍穹…… 于是,这一刻终于到来了……王陵穿越到魂兽横行、全球武魂觉醒的平行世界。 开局绑定外附武魂混元道宫,觉醒王者级双生武魂生灵圣火和混元神火,产生顶级武魂异像,震惊全球! 混元道宫加速时间,魂植成长速度是外界的千倍万倍! 生灵圣火与混元神火更是炼丹神物! 一举成为神级炼药师,复兴华夏炼药事业,成为世界第一! 所有人都认为他只是一名神级炼药师,毫无武力值。 直到有一天,魂兽侵袭生灵涂炭,人族危在旦夕。 王陵从天而降,手持宫殿脚踏神火,大手一挥,轻易化解了魂兽危机。 全世界才恍然大悟,将他供为神灵! 天宫宫主:“妖孽如此子,天佑我华夏!” 米国战神:“我不是他的一招之敌。” 魂兽之王:“如果不臣服于他,我就只有死路一条。” 帕特农神女:“他的炼丹之术让我望尘莫及,希望能与他‘单独’探讨炼药技术和魂植生命的起源。” 王陵:“其实我只想低调的做一名炼药师而已,但实力不允许啊!” 一朝穿越,成为朱元璋十七子。 赐封宁王,朱权有点皮。 朱元璋:朱家老十七,纨绔属第一! 直到洪武六十大寿…… 这一天,有人单骑斩叛将,纳哈出归降。 这一天,有人发粮赈灾民,百姓终活命。 这一天,天降祥瑞传国玺,大明得国正。 这一天,朱元璋册封朱权,无敌宁王!
东莞 网站设计 厦门微网站建设 重庆网站开发公 乐清手机网站优化推广 达内培训 网络营销课程 网络安全怎么办 漳州做网站 全网整合营销成功案例 营销小组 杭州建网站 婴灵的安抚有哪些技巧?【www.richdady.cn】 成人发育倒退的可能症状【www.richdady.cn】 存不住钱的原因分析【www.richdady.cn】 婴灵对家庭的影响咨询【www.richdady.cn】 心慌胸闷头晕的原因分析咨询【www.richdady.cn】 莫名其妙感伤的解决方法咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 耳鸣的咨询技巧咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 人际关系不好【企鹅383550880】√转ihbwel 存不住钱的前世因果【σσЗ8З55О88О√转ihbwel 心特别累的环境影响【www.richdady.cn】√转ihbwel 孩子学习不好咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 什么原因意外的前世影响咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 化解婴灵的最佳时间【微:qq383550880 】√转ihbwel 财运不佳的风水调整咨询【企鹅383550880】√转ihbwel 前世老婆的前世案例咨询【σσЗ8З55О88О√转ihbwel 自闭症的案例分享咨询【www.richdady.cn】√转ihbwel 有官司的自我保护咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 查财运专业服务咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 儿子抑郁症的环境影响【企鹅383550880】√转ihbwel 婚姻生活不顺的环境影响咨询【www.richdady.cn】√转ihbwel 大庆做网站 反中国威胁论 信息安全 风险评估管理软件 信息安全 比较 广东省网络安全应急响应平台 网络信息技术应用与网络安全 南山网站制作 主机营销 网络安全怎么办 网络安全产品国外品牌 衡量网络安全的主要指标有哪些 网络营销能力秀刷ar值 网站制作想法 做购物网站 旅游网站策划书 淄博中企动力公司网站 大数据 信息安全 建设方案,-1 商丘专业做网站 商家营销运营部培训 小米的客服中心提供了怎样的服务?哪些与网络营销有关? 信息安全风险管理制度 百度xml网站地图 市场营销能力秀 南山网站制作 商丘专业做网站 内蒙网站设计公司 成都网站建设公司 食品类b2c网络营销 对网络安全提建议 邢台网站优化 网站设计风格 优秀网站的颜色搭配 淄博中企动力公司网站 网站的维护 网络营销的过程 反中国威胁论 信息安全 让移动网站 网络安全保护网站 域名 网络安全法 2016 techcrunch 网络营销能力秀刷ar值 互联网营销服务类 重庆企业网站推广 杭州建网站 网络安全综合解决方案 网站对域名 信息安全互联网公司排名 重庆营销型网站开发 银行信息安全案例 深圳网站维护 网络营销策划举例 网络安全 网络选择 邮件列表营销论文 信息安全互联网公司排名 网站制作想法 天水网站建设 成都网站建设公司 品牌网站建设公司 网站的维护 长安建网站公司 网络信息技术应用与网络安全 制作公司网站价格 微信营销师 QQ转发营销活动 信息安全cc 中国计算机网络安全网 网络安全培训流程图 2017年网络信息安全法 网站制作 意图营销 信息安全与网络安全 中国网络安全附属 旅游网络营销方案设计 风险评估管理软件 信息安全 比较 长安建网站公司 企业展示型网站怎么建 2017年网络信息安全法 网络安全soc 新网站建设 学字体网站 优秀网站的颜色搭配 关于网络安全协议 信息安全与黑客 qq群营销 旅游网站策划书 邮件列表营销论文 杭州网站网络 科技公司 中石油信息安全体系 营销推广平台 网络广告营销方法 网络安全产品国外品牌 衡量网络安全的主要指标有哪些 乐清手机网站优化推广 ids技术在网络安全中的应用 重庆营销型网站开发 专注合肥网站建设 电脑建网站 网络安全有前景吗 合肥公安部信息安全 上海市信息网络安全管理协会 山东网站建设推广 聚美优品产品营销助理 厦门网站制作 杭州网站网络 科技公司 网络营销学下载 网络营销学下载 衡量网络安全的主要指标有哪些 达内培训 营销营销 上海市信息网络安全管理协会 加密和解密技术对于信息安全 网站数据包括哪些内容 医疗营销网 营销型集团网站建设罗湖网站建设 信科网络 国家信息安全中心主任 重庆知名营销公司有哪些 办公电脑网络安全教育 分析一个网站 旅游网站策划书 商丘专业做网站 做购物网站 漳州做网站 信息安全例子 网络安全世界领导人奖 商家营销运营部培训 网络安全怎么办 网站制作想法 学字体网站 信息安全竞赛ctf 中国计算机网络安全网 深圳推广营销策划 网络安全测试与评估 关于网络安全协议 信息安全产品eal3等级认证,-1 南通网站制作东营网站建设 福州网站制作公司名字 分析一个网站 信息安全风险管理制度