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
网络安全的威胁 参考书手机付费咨询网站建设营销优势有哪些方面网络安全预警中心番禺网站推广互联网营销公司有哪些工控信息安全 介绍数字营销哪儿有承德网站建设信息安全专家证书喂,你真的要走? 是。 那你...... 我不会再回来了,这个地方我再也不想待。 那我呢? 我们本不是一类人,你会遇到更好的,我也该走了。 最后一世了,我活得够久了,心里的一切也该放下了 那你身边的人都白死了吗,你要是就这么放弃,那我们的努力呢?我们这么多人做的都是无用功吗?。 你对他好点,我把他交给你了…… 再见,希望你能过得好 跨越千年,她的等候真的有意义吗?他还记得她吗?林莫得到一则预言,灵气复苏即将来临,但他不慌,为什么,因为他在灵气复苏之前,就已经修炼了三年了,在充满异能和灵气的世界,他会一直处于顶端。随着万年前战神平定战乱之后,不知为何,苍源界灵气渐渐枯竭。 如今灵气渐渐开始复苏,潜藏在苍源界的危机渐渐浮出水面。 一个丢失记忆的青年离愁为找寻自己记忆踏上侠盟考核之路,同样被命运选中的伙伴。 是如同屠龙者变成新的恶龙还是怀持初心。 人在没有离开尘世时,谁也说不清未来将会发生什么。 本来工作顺心、家庭和谐,婚姻稳定的主人公但益恒不经意间发现贤惠持家的老婆暗地里已出轨多年,工作又不顺心,令他性情大变一怒之下辞职却又遭老婆羞辱,生无可怜之下跳河自杀。 死容易,生更难。 他落魄、失意,在逃离家与愧对女儿的煎熬中不断努力,并结识了三位红颜知已,一方面为了女儿有一个健全的家他想守住初心但夫妻之间的裂痕已无法愈合;一方面逃家自由中又遭遇三位婚外女人的步步紧逼。面对三个独立而有个性的女人主动攻击,他贪恋这种“偷情”的刺激陷入了婚外“情”的泥潭之中,可是,谁想过这种不伦不类纠缠不清的日子呢?熊与鱼掌不可兼得,经过无数次挣扎,他只得做出断、舍、取,那晓得,命运又跟他开了一个玩笑,他该何去何从呢……不断的逆回时空,走过、看过、经历过,只为追寻心中的梦。60年代的一次偶然相遇,从此,他和她的命运便紧紧联系在一起。他为了她,抛弃地位和财富,宁愿一切从零开始。她为了他,含泪步入他门,但心灵深处却从未与他远走。两心相依,是他们今生的企盼。来世聚首,是他们此生最大的心愿。且看他们在生命的路途中,如何用青春的音符,演奏一曲都市恋歌;怎样用智慧和汗水,携手编织明天的彩虹。这里是一个奇特的位面,有无数个小界面,有玄气,衍气等奇异特的能量。人与魔战,捍卫家园,寒衍前世拼尽所有,也不是冥魔帝的一招制敌,反而被破碎了所有。今生被神秘玉坠复活扭转时空,跨越时空的爱恋,回到少年时代,这一世寒衍,有亲人朋友在,还有记忆深处的那道倩影…她,这一世,衍皇携剑指魔帝,来战!这一次,我一定会赢!我,神,还没有我做不到的事情呢秦凡为救老婆,不得已暴露自身能看到宝物气息的能力,不断捡漏,只要是宝物,在秦凡的眼中都无所遁形,因此引起各方势力的注意,破真伪,看人心,鉴宝捡漏,玩转人生……来到地球的雷伊、盖亚、卡修斯、布莱克,结识了一名人类——白绥。短暂的平静,不足以说明世界的和平。阴谋潜伏在周围的一切中。“这是一场精心策划的戏。请不要改写。”面对这一切,迎来的是白绥的冷笑。“我的命运,不需要别人插手。”前世的情缘,必于今生延续。“你是…阿克希亚?”“即使我不想承认,但也无可奈何——”冰雪女皇?阿克希亚驾到。
网络营销科技公司 认证代码 信息安全 专业的网络营销公司哪家好 录制营销视频 银川建立网站 gartner 信息安全2015,-1 网络营销课程教学内容 VPN与网络安全 国家网络安全宣传周周宜昌行动 信息安全咨询服务 国外 前世缘份对现世的影响【www.richdady.cn】 感情纠纷的情感沟通方法有哪些?咨询【www.richdady.cn】 投资项目的选择方法咨询【www.richdady.cn】 前世缘份的故事有哪些真实经历?【www.richdady.cn】 前世缘份的前世记忆咨询【www.richdady.cn】 财运不佳的财富管理方法有哪些?【微:qq383550880 】√转ihbwel 前世老婆的前世修行咨询【企鹅383550880】√转ihbwel 缺心眼的原因分析咨询【σσЗ8З55О88О√转ihbwel 人际关系不好的咨询技巧咨询【企鹅383550880】√转ihbwel 阴间生活的描述与传说【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 有官司的法律援助咨询【www.richdady.cn】√转ihbwel 前世今生的缘分揭秘咨询【σσЗ8З55О88О√转ihbwel 前世缘份威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 孩子厌学的辅导方法咨询【www.richdady.cn】√转ihbwel 孩子不爱读书的应对策略有哪些?咨询【企鹅383550880】√转ihbwel 灵魂化解的意义咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 大龄剩女的婚恋困惑如何解决?【企鹅383550880】√转ihbwel 内心恐惧胆怯的原因分析威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 去世的父亲的前世案例咨询【σσЗ8З55О88О√转ihbwel 存不住钱的原因分析【www.richdady.cn】√转ihbwel 网络推广营销系统 营销型页面 天津网站设计开发 e万营销 如何设计网站域名 美国网络安全标准 江门网站优化许昌网站建设 酒店网络营销方法 公安部网络安全法 信息安全审计内容,-1 怎样给网站换空间 信息安全等级 威胁 广州信息安全 传统营销的特点是什么 武汉手机网站建设咨询 手机付费咨询网站建设 信息安全等级保护的原则,-1 济南网络安全培训 全国网络安全会 微博粉丝通营销 国内外的网络营销理论 兰州网站制作 沈阳网站建设的公司 淄博网站建设有实力 有经验的南昌网站设计 服装手机商城网站建设 哈工大网络安全试验室 苏州网站制作 长沙百度做网站多少钱 网络营销简历怎么写 信息安全等级 威胁 南京网站制作哪家专业 网络安全加密 网络安全必看书籍推荐 深圳哪家网站建设好 网站多域名 ie8 中网站后台编辑器ewebeditor不能发布文章 怎么管理网站添加代码 公安部网络安全法 信息安全培训办公室提醒您 2013网络安全案例 悬念式营销 公安部 信息安全 网络信息安全备案表 江门网站优化许昌网站建设 信息安全服务认证中心 网络营销软文100字 网络安全的威胁 参考书 营销页面策划 如何设计网站域名 苏州市网络安全 移动商务营销案例 如何解决网络安全问题 email网络营销现状 手机网站设计开发服务 苏州网站制作 网站链接数 兰州网站制作 网站开发建设 南京微信营销软件 2017十大网络安全事件 营销页面策划 网络安全 逆向 移动营销目的 网络安全与病毒防范 pdf 网络营销平台建设方案 网络安全运营外包福建信息安全会议,-1 北京互联网营销公司 信息安全技术终端计算机系统安全等级技术要求 深圳建网站 兰州网站制作 网站套餐网页中国计算机信息安全,-1 南京网站制作哪家专业 公安部信息安全电视会议 重庆旅游网站建设 公安部网络安全法 腾讯公司网络安全 网络安全演讲 律师建网站 有经验的南昌网站设计 服装手机商城网站建设 商城网站模板 什么是网络事件营销 网络营销考试案例分析 网络营销的一些问题 浙江网络安全宣传周网络安全法 元年 商城网站模板 gartner 信息安全2015,-1 信息安全等级保护备案流程 安庆网站设计 gartner 信息安全2015,-1 淄博网站建设有实力 太原建立网站 网站优点 微博粉丝通营销 苏州网站seo 营销对企业的重要性 信息安全服务认证中心 鄂州网站制作 网络安全需知 网站常识 如何设计网站域名 工控信息安全 介绍 沈阳网站建设的公司 网络营销流量的重要性 营销优势有哪些方面 湖南手机网站制作公司 网络信息安全领导小组 华中科技大学信息安全综合设计与实践 营销型页面 网络安全加密 推广及建设网站 网站建设公司是什么 sem整合营销代理 台州优秀网站设计 杨波信息安全 网络营销简历怎么写 全国网络安全会 开放平台信息安全 网络信息安全领导小组 网络安全的威胁 参考书 优异网站 信息安全审计内容,-1 推广及建设网站 手机网站设计开发服务 信息安全技术终端计算机系统安全等级技术要求 营销型页面 网站用途 信息安全是国家什么的基石 网络营销流量的重要性 深圳哪家网站建设好 b2b外贸网站 上市公司网站设计 网站的网页 信息安全 产业