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
深圳官方网站制作网站建设价格电商网站建设新闻信息安全等级保护 五级标准台州卫浴网站建设锦州做网站网络安全能力网络安全技术防火墙杭州网站建设公司联系方式俄罗斯 网络安全一叶一浮沉 上苍之下,万物浮沉,你我不过落花一朵 末世,丧尸,异能,人性,生物兵器 长生不是福赐,而是诅咒。 生离死别,千世孤独。 结束,也是开始…… 再回一次,你依旧无能为力……江潮刚穿越古代,发现前身是个好吃懒做的主,家里还有一对苦命姐妹。 眼看断粮要饿死,江潮只能做个勤劳的小蜜蜂。 却不想日子有点盼头,土匪又上门了。 都不想我活是吧?那我就先弄死你,我可是全能特工,先弄几颗土雷轰你娘的。 土雷不怕?枪怕不怕?要不就搞几门炮炸你玩玩!没事,数理化哥全能。你来再多,有的是办法对付你。 朝为田舍郎,暮登天子堂! 从乡野到朝堂,江潮靠着领先这个时代千年的知识,竟渐渐握住了这个强盛王朝的脉搏。手握55张牌的古长瑞作为主角的导师,身上时常感觉压力山大一卷封神榜,一座封神台,为异界带来一个异数,也是一个变数,掀起波澜壮阔的江湖烽烟。五百年必有王者兴,三千载则当圣人现,一万年沧海桑田,阴川之下,造化之工,天照点将,揭开三千年后封神大战的帷幕。龙啸九天,正心泯仇;凤鸣寰宇,修身弘愿。封神榜起,封神台终,登天梯下,上演着血与火的恩怨情仇…… 贫道纯属虚构,如有雷同,你能咋滴?拔刀吧——人生赢家!每个人都有一个终点,是结束还是开始,都不一定! 这里没有轰轰烈烈的故事,只有平平淡淡的开始。 直到。。。。。。 依山而建的宏伟墓藏,却无一具尸骸,墓主人到底是谁,它们又身在何方。 十大古老家族,永不出世,到底在守护什么秘密。 吴惊蛰带领着考古队,探究着一切,却也踏上了一条不归路。他不甘堕落,在这座城市生根发芽,认识了这个妩媚的女人,一步步走向美好。祭祀开始,向死而生!天若诛我,我便灭天,地若杀我,我便灭地,我王十八的命由我不由天!人在没有离开尘世时,谁也说不清未来将会发生什么。 本来工作顺心、家庭和谐,婚姻稳定的主人公但益恒不经意间发现贤惠持家的老婆暗地里已出轨多年,工作又不顺心,令他性情大变一怒之下辞职却又遭老婆羞辱,生无可怜之下跳河自杀。 死容易,生更难。 他落魄、失意,在逃离家与愧对女儿的煎熬中不断努力,并结识了三位红颜知已,一方面为了女儿有一个健全的家他想守住初心但夫妻之间的裂痕已无法愈合;一方面逃家自由中又遭遇三位婚外女人的步步紧逼。面对三个独立而有个性的女人主动攻击,他贪恋这种“偷情”的刺激陷入了婚外“情”的泥潭之中,可是,谁想过这种不伦不类纠缠不清的日子呢?熊与鱼掌不可兼得,经过无数次挣扎,他只得做出断、舍、取,那晓得,命运又跟他开了一个玩笑,他该何去何从呢……
但是网站相关内容和程序并没有建设完其次网站公司给我公司的 泉州石狮网络营销推广 网络安全防御测试 什么计算机网络安全 网站建设有免费的吗 病毒式营销案例 网络植入式营销案例 手机版免费申请微网站 社交媒体营销要不要做 恩施做网站 内心恐惧胆怯的原因分析【www.richdady.cn】 发育倒退的案例分享【www.richdady.cn】 投资项目的风险评估【www.richdady.cn】 前世缘份对现世的影响【www.richdady.cn】 存不住钱的咨询技巧咨询【www.richdady.cn】 头脑混沌的生活习惯【σσЗ8З55О88О√转ihbwel 官司的解决方法【微:qq383550880 】√转ihbwel 无形干扰的案例分享【www.richdady.cn】√转ihbwel 孩子不爱读书的家庭教育方法有哪些?咨询【微:qq383550880 】√转ihbwel 祖灵对家族的影响咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 升迁障碍的职场转型技巧有哪些?【www.richdady.cn】√转ihbwel 莫名其妙感伤【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 特殊学校的前世因果【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 强迫症的咨询技巧【www.richdady.cn】√转ihbwel 前世因果化解方法【微:qq383550880 】√转ihbwel 官司【σσЗ8З55О88О√转ihbwel 外灵咨询【企鹅383550880】√转ihbwel 大龄剩女的前世记忆咨询【微:qq383550880 】√转ihbwel 儿子抑郁症的自我提升咨询【www.richdady.cn】√转ihbwel 大龄剩女的婚恋规划如何制定?【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 营销采集软件 信息安全事件管理规范 网络游戏营销策划 无锡好的网站公司 博客网络营销2014.3. 网站设计和备案 优秀网站设计 电商网站建设新闻 网络安全事件应急响应时间要求 危害国家信息安全的例子 网络安全失泄密黑板报 网站css中父级自适应高度没有子级自适应的高度高怎么解决 但是网站相关内容和程序并没有建设完其次网站公司给我公司的 台州卫浴网站建设 营销新思路 网站换程序 网站建设有免费的吗 网络安全要有什么基础知识 企业要网络营销 企业信息安全内容 锦州做网站 唐山网站建设费用 全网营销软件 网站建设维护 广西信息网络安全报警网站 自做网站 网络安全平台 2016网络安全案例事件 网站建 公司营销2015亚太信息安全峰会 国际信息安全新闻网站有哪些 什么计算机网络安全 信息安全 程序员 信息安全管理岗 招聘 成都网站制作公司电话 河南省第二届信息安全 网站css中父级自适应高度没有子级自适应的高度高怎么解决 网络安全审计原理 全网整合营销服务商 网站建设三合一 网络安全专家评审 微博经典营销博文 东莞网站优化 网站建设评判 网络安全 教学安排 北京朝阳网站设计 企业信息安全内容 全网营销包含哪些 网站设计 价格 济南网站建设第六网建 无锡好的网站公司 进入教育行业信息安全的企业 汽车网站策划书 手机版免费申请微网站 如何写网站文案 恩施做网站 网站建设有免费的吗 信息安全等级保护 五级标准 温州网站制作的公司 东莞网站优化 谷安网络安全 国家开放大学信息安全学院 网络安全审计原理 网络信息安全预警 恩施做网站 订做网站 搜索型网站厦门网站建设要多少钱 周口网站建设 网站改了域名之后服务器正常程序正常为什么后台打不开呢 网络安全部队 网络安全专家评审 保定做公司网站的 邢台网站推广 网络安全专家评审 网络信息安全预警 全网营销包含哪些 河南省第二届信息安全 有哪些网络安全论坛 手机版免费申请微网站 当前信息安全面临的威胁 网络营销影响因素 网络安全方法 网络信息安全工程师高级职业教育系列教程,-1 网站建设维护 odex信息安全,-1 营销外包公司 北京 外贸网站制作时间及费用 全网整合营销服务商 网络安全平台 网站建设价格 网络安全2017大检查 湖南企业网站建设 网络安全专家评审 北京企业建立网站 做互联网营销执行 珠海品牌网站建设 网络安全 教学安排 东莞网站优化 南昌网站开发 公司营销2015亚太信息安全峰会 建的网站打开很慢 网络安全法 香港产品网站建设 网站建设三合一 国家应对网络安全 汽车网站策划书 周口网站建设 社交媒体营销要不要做 网站销售 外贸网站制作时间及费用 网络信息安全工程师高级职业教育系列教程,-1 网站建设有免费的吗 信息安全管理岗 招聘 营销是 云创通营销手机多少钱 路由器网络安全设置 网络安全 教学安排 网点营销手机短信 营销是 中国信息安全奠基人 网络安全防护技术应用做网站 深圳 网站改了域名之后服务器正常程序正常为什么后台打不开呢 危害国家信息安全的例子 枣庄网站设计 社交媒体营销要不要做 邢台网站推广 计算机技术与信息安全 网络安全法 香港产品网站建设 网络安全平台 品牌网站建设多少钱 国家信息安全管理体系审核员 营销案例及分析 谷安网络安全 网络营销影响因素 品牌网站建设多少钱 保定做公司网站的