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
推广及建设网站信息安全奖 致辞营销调研网站做好了每年都要续费吗思尚营销信息安全技术 信息系统安全审计产品技术要求和测试评价方法网站制作 中企动力公司微博营销方法网络营销的的概念网站建设排版页面昆明企业网站开发当什么都不知道的情况下来到末世,而且队友带着你天天作死,最后还要被暴打,这是什么魔鬼难度的生存解密游戏吗?(PS:只追求能看,充满神头鬼脸,更新全看自身码字速度,观看时强烈建议不要扣地,看不懂不要问,因为我可能也看不懂自己在写什么。求生欲拉满.jpg)我们该去享受,还是该去抱怨,这不是一部小说,是很多故事,或许会有一个触动你,加油从一名狱卒入赘仙宗。 陈浮生发现老丈人天天喝花酒,逛青楼。 妻子上官凤儿整日修行不见踪影。 作为赘婿百无聊赖,只能帮忙管理仙宗。 这一日,陈浮生依旧躺在摇椅上晒着太阳打着盹,上官凤儿的丫鬟问道: “姑爷,为何你年纪轻轻富可敌国?” “姑爷,为何这仙澜大陆这么多人都要给你面子?” “姑爷,为何感受不到你的灵压,却能反手打死元婴大佬?” “姑爷...为何...” 陈浮生翻了翻身子,懒洋洋道:“不就管理一个小宗门,有幽冥监狱那么难吗?” 小丫鬟听后缩了缩脖子。 幽冥监狱,那里关押的都是绝世大佬。 监狱最高九层! 咱仙宗掌教,在那里最多只能排在三层 尘寰外,碧海中,桃花之间桃花岛。秋风起,海波兴,几度潮来听玉箫。且看东邪黄药师传人,如何纵横都市。满天神佛朝我跪拜,天下美女唯我独揽!已完本,放心阅读。北玄大陆,燕国。 燕皇突发重病生命垂危,众皇子上演夺嫡大戏。 姬兴身为最小十九皇子,本想与世无争却也难免杀身之祸。 当他重新醒来后,被一名老和尚收做弟子,赐名玲珑。 十年修行,终得出师。 此番一别,不知何日归……大楚国叛乱四起,经过多年的平叛战争叛乱最终平息,朝廷的权威已经大不如前,国内军阀林立,派系繁杂,民不聊生。侠之大者,为国为民,自有忠义之士愿效忠于朝廷看云郡将士重整旗鼓,再造河山。土生土长在女尊世界里偏居一隅的流逐之地,深受男德荼害,陆雨平养成纯真、柔弱的性格,拥有特殊体质和天命加身的他只想与妻子平稳幸福生活下去。可在狼豺环伺的世界,优越的自身条件注定让他无法安于普通,随之而来,便是一系列麻烦事上身,新婚之夜险受玷污,被卖入怡春园学艺......后续,还有更艰巨的旅途等着他,一名低弱的男子能否担起重任,完成天命? 尝试按心中合理的写法写写看会出来什么东西。万万没想到,走路也可以修练,躺着也能成为大佬。 人说:要做个有梦想的咸鱼,本想翻身,一不小心咸鱼粘锅。 哎呀!完犊子了…… 是命运的不公,还是英雄的凯歌! 两世轮回,繁华落尽! 待回首,灯火阑珊处却不见她。 传说中的手掌乾坤,脚踏星辰,御剑飞行的世界真的出现。 各种大佬,集聚一堂。 而苏洵,却身处漩涡之中。 谁是执棋之人,而谁又是棋子?因家贫,父母大吵一架,母亲只身离家赴南方打工,第二天父亲告别家人出去寻找,这一找,就是两年,可当他们再次回到家里,却发现村子已经发生了翻天覆地的变化,家里富裕了,五岁半的儿子,也成了县里响当当的第一富豪。
网站摸板 建站员工网站 河北做网站哪家公司好 许可营销工具有哪些? 问答营销推广的作用 武汉网站设计 长沙微信网站公司 网络安全测试软件 美国国家信息安全战略 广州网站设计公司招聘 财运不佳的财富管理方法有哪些?【www.richdady.cn】 婴灵对家庭有哪些影响?【www.richdady.cn】 如何改善亲子关系?咨询【www.richdady.cn】 发育倒退的早期干预措施咨询【www.richdady.cn】 生活中的无形干扰有哪些【www.richdady.cn】 家庭关系的相处之道有哪些?【www.richdady.cn】√转ihbwel 化解外灵的专业手段咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 大龄剩女的职场发展【www.richdady.cn】√转ihbwel 头脑混沌的自我提升咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 与老公前世的前世缘分咨询【www.richdady.cn】√转ihbwel 阴间生活的前世因果【σσЗ8З55О88О√转ihbwel 老公家暴的咨询技巧【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 前世今生的奇妙经历咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 家庭关系的改运方法【σσЗ8З55О88О√转ihbwel 家庭关系的相处之道咨询【微:qq383550880 】√转ihbwel 缺心眼的心理调适【www.richdady.cn】√转ihbwel 为什么过世的前世解析咨询【www.richdady.cn】√转ihbwel 心慌胸闷头晕的前世记忆咨询【微:qq383550880 】√转ihbwel 心特别累威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 大龄剩女的幸福指南咨询【www.richdady.cn】√转ihbwel 网络安全实验报告 信息安全备案申请模版,-1 静安区品牌网站建设 2014年中国互联网网络安全报告 社交网络营销的定义 微信营销的传播优势 信息安全管理体系包括 石家庄网站建设 武汉网站建设 微博营销方法 如何建立自己的网站 微机室网络安全管理 推广及建设网站 嘉兴的网站设计公司有哪些 网络安全历史 网络安全设备魔力象限 信息安全证书 2015网络安全事件调查报告 关于写策划的一个网站 武汉网站建设 信息安全与服务有限公司 网络营销外包公司 郑州网络营销外包公司排名 济南建网站 为什么要学网络营销 网络营销的大公司 新媒体企业微信营销成功案例 信息安全奖 致辞 微机室网络安全管理 搜索网站排名 大连 营销策划公司 为什么要学网络营销 2. 网络时代中的企业特别是中小企业应该如何有效地实施网络营销? 昆明网站开发 重庆网站开发设计公司电话 h5网站作用 为什么要学网络营销 西安网站建设公 交友网站建设 石家庄网站建设 网络营销的定义及常用方法 邢台网站建设厂家 信息安全运营中心产品 网络营销的的概念 常见的信息安全问题,-1 信息安全专业。黑客 智能网联 信息安全,-1 网络安全通信 网络安全实验报告 网络安全法立法 自己怎样建立个人网站 信息安全奖 致辞 昆明高端网站建设公司 济南网站建设企业 什么是全网营销 昆明企业网站开发 高级信息安全顾问工作职责,-1 网络安全分类标准 桥南做网站 网站制作 中企动力公司 交友网站建设 创客通营销手机有用吗 2013年 张建军 信息安全 问答营销推广的作用 2015网络安全事件调查报告 昆明网站开发 中软信息安全考试题库 网络安全威胁分析报告 温州网站制作价格 山东临沂网站建设 重庆网站开发设计公司电话 搜索网站排名 设计网站酷 企业建网站的 程序 微信营销的传播优势 郑州网络营销外包公司排名 问答营销推广的作用 关于写策划的一个网站 量子计算与网络安全 微博营销方法 信息安全备案申请模版,-1 网络营销的的概念 2011年网络安全事件 长春作网站 信息安全管理体系包括 美国国家信息安全战略 信息安全奖 致辞 常见的信息安全问题,-1 网络安全标准体系 国内信息安全软件厂商 河源网站建设 自己怎样建立个人网站 企业网络安全解决案例分析网站建设七点 湖南专业做网站企业 网络营销外包公司 嘉兴的网站设计公司有哪些 网络信息安全安全号 武汉网站建设 亳州网站制作 微信网站方案 网站未收录 网络安全具体措施 设计网站酷 什么是全网营销 社交网络营销的定义 如何自己建网站 信息安全与服务有限公司 微博营销方法 网络安全威胁分析报告 网站建设排版页面 目前网络安全市场 四川大学网络安全硕士 网络安全设备魔力象限 上海网络安全公司 网站项目进度 2014年中国互联网网络安全报告 推广及建设网站 网络安全方面国内外研究成果 关于的网络营销文章 企业网络安全解决案例分析网站建设七点 桥南做网站 南京网络营销推广外包公司哪家好 昆明网站开发 简单建网站 长春作网站 网站域名权 区块链 信息安全大赛 南京网络营销推广外包公司哪家好 中软信息安全考试题库 网络营销应用知识 网络安全法二十一条 近年国内网络安全事件 目前网络安全市场 智能网联 信息安全,-1 网站摸板