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企业信息安全概述上海科技网站建设深圳全网整合营销信息安全意识 多选题龙羽飞只在异世界觉醒一只脚,怎么去拯救世界啊!?远古时期,掌握欺天之术的女帝窃取了御道世界的位面之位,天地规则发现后大怒,便向蓝星召唤异乡人前来击杀她,可是经过千年的厮杀,上一代失败了,在绝望之中,他发动天地大誓召唤了龙羽飞,逼迫他走上成为神明的道路重生东汉,觉醒菜鸟系统 哪知这个系统与宿主性格不合,下一秒系统直接造反,竟化身成为 最强帝王系统附身他人身上。 誓要与昭昊死磕到底。 从此,昭昊的漫漫三国路变得艰险无比。 为了找出隐藏在背后下黑手的系统,昭昊开启了他漫长的背刺生涯。 凡是有资格成为的帝王的人,都成为了他背刺的目标。 吕布:我此次前往雁门,是为杀了昭昊小儿,以报夺妻之仇。 昭昊:什么,昭昊小儿竟然如此卑鄙,兄长放心,辽与你同去,定斩下昭昊小儿人头以泄兄长心头之恨。 当晚二人把酒言欢,酒后,昭昊将匕首一把刺进吕布的心窝。 昭昊:“兄长,看来你不是系统附身之人。” 董卓祸乱朝纲。 曹操:“董贼不除,我大汉四百年基业岌岌可危,子阳,今晚你我二人就潜入相府,斩杀国贼董卓,还天下一个朗朗乾坤。” 昭昊:“就依孟德之言。” 当晚,二人潜入相府,曹操拿着七星宝刀一步步朝熟睡的董卓逼近,而他的背后,昭昊正手持匕首对准他的心窝。 齐俊城带着男神养成系统穿越到异世界妖祖皇宇宏和魔道众魔之主宏天焰。在一万年一次的妖魔大会上,被妖界预言师和魔道大祭祀告知,我们存在的宇宙是多元宇宙,在不同的宇宙都会有生命的存在,在某些特定的条件下,不同宇宙的生命会以灵魂穿越到不同的世界,不久将会有异世界的人或生物穿越到我们的世界,他们是天选之人或是天命之兽。他们的到来会影响正邪两道的运势,道门,魔门,以及佛门都会不择手段想方设法把他们归入门下。众妖魔合力打开天命轮,得知到来的是一人一兽。《李联英本是一个厨师在下班路上碰到有人偷手机报警,人犯被抓没多久他被人叮上在公交车站边厕所里被人用刀捅死》灵魂穿越来到这个世界投胎到了一家买饼的家庭。 超进化异形母体被铁血战士追杀,无意中逃窜到未实验的空间长廊里,肉体被空间拉扯破碎,灵魂穿越到这个世界,投胎成了12尾狐。魔主下山前变成了女人,妖祖却选择涅槃成了美男子,之后他们4个…… 异界的国度妖魔苏醒,那里即将面临生死劫难,轩辕庄就是摆脱生死劫难的寄托。轩辕庄自己在非凡经历得以砥砺成长。下凡之路之星云上将 她身世特殊,母亲是外星球公主,父亲是地球出色的宇航员;她天赋异禀,天生喜欢研究杀人不眨眼的武器。 善良的地球人把她秘密寄养在昆仑山,抚育成人。妄想入侵地球的外星人,对她进行勾引、诱惑甚至威胁。 最终她决定必须与这颗养育自己的星球共赴生死。 本故事纯属虚构,如有雷同,纯属意外一枪打过去,一道道闪电在敌人身上串来串去;一炮打过去,一发变成漫天遍野;神圣冰冻把敌人变成冰渣子;雷云风暴让敌人感受绝望;打倒一个敌人变成了超级大怪兽! 怎么?还有其他金手指?还有其他的世界等着我去征服? 哇哈哈哈哈哈哈!我来了!一本日记。传言心门每名弟子都是门主,都是强者。 ……… 破天荒的,那个平时最冷漠的人出“门”了… ………开局出生在幽冥血海?还变成了冥河的唯一兄弟? 晓尽天下事的他,怎么可能甘心苟活一世?啊,你说这是巫妖量劫,那没事了! 入量劫?想都别想,这一世就硬苟!稳健人生,苟到天荒地老。 随着稳健的人生展开,天翻地裂的战斗却在洪荒大地上展开。 万物残缺、万道覆灭、世间唯有圣人门徒长存! 而战斗,也波及到了幽冥血海。 那一刻,天地闻之变色,无尽业力涌向洪荒天地,令天外残魂都震动不堪! 陆云景踏步而出,俯瞅诸世。 众人大惊! 竟是……
2014全球网络安全事件 北邮信息安全就业 网站的步骤 网络安全法 工信部 网络营销创业 广州手机网站设计 网站策划图 西安h5网站建设 为信息安全 中国政府 信息安全 冤亲债主干扰咨询【www.richdady.cn】 缺心眼的表现及成因咨询【www.richdady.cn】 干扰的常见类型【www.richdady.cn】 冤亲债主的干扰原因【www.richdady.cn】 事业不顺咨询【www.richdady.cn】 儿子抑郁症咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 前世缘份的解读方法【www.richdady.cn】√转ihbwel 特殊学校的教育理念咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 迟缓儿的症状与诊断【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 投资项目的前世因果咨询【σσЗ8З55О88О√转ihbwel 耳鸣咨询【σσЗ8З55О88О√转ihbwel 升迁障碍【企鹅383550880】√转ihbwel 头脑混沌的心理调适【www.richdady.cn】√转ihbwel 强迫症的康复训练威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 性压抑的前世因果【σσЗ8З55О88О√转ihbwel 性压抑的自我提升【企鹅383550880】√转ihbwel 不爱读书的自我提升【www.richdady.cn】√转ihbwel 邪灵的感应现象咨询【企鹅383550880】√转ihbwel 人际关系不好时的心理调适咨询【企鹅383550880】√转ihbwel 冤亲债主干扰的解决方法咨询【σσЗ8З55О88О√转ihbwel 网络安全设置方案 设计学网站 个人网站设计 国际信息安全顶级会议 检查网络安全 北京微信网站制作 成都市信息安全企业 成都市信息安全企业 网络安全 个人信息安全 网站设计师联盟 建网站需要多少钱 信息安全研究所 网站注册 深圳全网整合营销 东营有哪些制作网站 厦门信息安全教授 网络安全培训培训机构 王老吉地震营销 等级保护网络安全ppt 网络安全法 工信部 网络安全实验室 设备有哪些内容 阿克苏网站建设 安卓测试网络安全 深圳建科技有限公司网站首页 苏州响应式网站建设 番禺网站建设专家 网络营销有什么证 河北网站建设 2014全球网络安全事件 丽江网站建设 科研 信息安全,-1nsc 网络安全 重庆网站优化公司 杭州营销外包公司 信息公司营销计划 免费网站空间 深圳b2c网站构建 南京移动网站建设 互联网产品营销计划书 苏州响应式网站建设 信息安全力量配置 专业的常州做网站 网络安全剧本 企业公司网站建设 设计学网站 属于信息安全产品的有 提供邢台网站优化 深圳b2c网站构建 598营销软件站 北邮信息安全就业 网络安全关键词2017 网络安全公 国际信息安全顶级会议 上海三零卫士信息安全技术有限公司 凡客诚品网络营销现状 网络安全的语句 通辽网站建设 网络安全应急服务支撑单位评选 营销推广心得 河南网站制作 企业信息安全概述 信息安全的特征 网站注册 代办信息安全服务资质 企业公司网站建设 成都市信息安全企业 网站设计一般会遇到哪些问题网络营销服务包括哪些内容 国家信息安全规划 建网站需要多少钱 如何做好信息安全方案 网络安全环境检测 网络安全剧本 上海三零卫士信息安全技术有限公司 肥城网站制作 网站策划图 杭州市网络安全作业 长春 建网站 网站设计北京新 提升网络安全意识 南宁互联网营销公司有哪些 信息安全平台 建网站需要多少钱 信息安全认证机构,-1 网络信息安全与大学生 im营销的劣势是什么 机票网站建设 网络营销热点 石家庄做网站 为信息安全 网站注册 网站效果 学网络营销费用 成都网站设计公司哪家好 网络营销有什么证 深圳全网整合营销 2017信息安全会议 太原 厦门信息安全教授 兰州网站建设 丽江网站建设 网站建设书 网御网络安全管理平台 网络安全零基础 营销单页 网站策划图 机票网站建设 网络安全培训培训机构 网络安全系统运维内容 网络新闻营销的特点 工信部 加强网络安全备案 高端大气上档次网站 王老吉地震营销 建网站的地址 网站站群建设 网御网络安全管理平台 保密局 信息安全测评 信息安全技术 信息系统保护轮廓和信息系统安全目标编制指南 网络营销公司微信号 网络安全法 工信部 西安h5网站建设 学建网站 网络安全排查 深圳全网整合营销 网络安全实验室 设备有哪些内容 无锡建设网站 昆明建网站要多少钱 网络营销创业 重庆有那些制作网站的公司 信息安全月 网络新闻营销的特点 互联网产品营销计划书 信息安全的特征 网络安全环境检测 2017网络安全案例分析 深圳建科技有限公司网站首页 国家信息安全规划 企业信息安全概述