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
学好网络安全法规 短信b2b营销推广上海高端建站网站做网站的流程网站建设排版页面网络安全信息共享国家网络安全哪天统一微信营销软件招代理成都网站建设市场分析网络营销课程培训虽然我是救世主,但我很低调,遇到敌人打的过就打,打不过我就滚!猥琐发育,别浪!在人类征服宇宙的无数岁月里,是否会有人想起一颗名为地球的星球 是否有人会重新寻找它的踪迹 是否有人会重新踏入它的怀抱这是一部送给我认识的每一个人的小说,来纪念一下这些关系之类的吧。林栾无意间被拉入到了一个妖族群,他忽然间发现这些大妖似乎都没有见过现代各种东西。 一块巧克力价值十根扶桑树枝! 一个PSP价值半盆龙血,记住是洗澡盆那么大哦! 三分之一块口香糖价值六个人参果,记得只有三分之一哦! 什么,你说我太奸商了?拜托,我做的都是良心买卖啊!我写的都是经历过后留下来,想要珍视的故事。 我出生于00年1月,作为这个世纪的第一批新生儿,总感觉要做些什么。 陌生的朋友,请听我说: 我们都要有越挫越勇的心态, 在我们保护不了珍视的事物前, 都要做好失去一切的准备。 我们要做命运的骑士, 如果要接受命运的安排, 那也只能是在我们拼尽全力之后。 现在的我虽然只是一条咸鱼, 可在我生命结束之前, 令人向往而又悲惨的世界啊, 我对你的回应也只有轻蔑, 我不会输的, 即使你能杀死我, 我的意志亦将如恢宏的太阳, 将尔扁如尘埃。我本无心张狂,奈何世间太多魔。可怜世上情与义,还值几两碎银?这世道,我要换,你若挡,那便战!诸国并存,武道盛行。两大王朝,九大世家。玄门六宗,魔道九派。万族林立,人族式微。 叶落意外穿越而来,遭遇妖魔,体内意外出现一座大鼎,只要镇杀妖魔就能变强。 从此,叶落走上一条万族共尊,独霸天下之路。生逢唐末乱世,各地豪强并起。看我江陵少年,如何渐露锋芒,尽显英雄气概。一个人被打造成武器,又不断变成人的故事寂静中复苏,黑暗中永恒。 一念神魔的大地迎来万族的降临和灾难。 群雄割据,万族林立,世界戴上枷锁。 人族陷入灭亡的危机! 一名少年从虚无中走出注视着这一切,迎着曙光而来:“我为人族开新世!”
网站开发费用报价单 常用网络安全工具软件 网络安全宣传周活动项目 重庆营销策划 张新 网络安全与管理 武汉国家网络安全中心微信网站制作 2016信息安全大赛 一等奖 信息安全等级保护 费用 重庆营销策划 品牌情感营销案例 如何解决孩子不爱读书的问题?咨询【www.richdady.cn】 什么原因意外的前世修行咨询【www.richdady.cn】 升迁障碍的改运方法咨询【www.richdady.cn】 亲子关系的前世记忆【www.richdady.cn】 脑部不清晰的咨询技巧【www.richdady.cn】 缺心眼的表现及成因【微:qq383550880 】√转ihbwel 什么是婴灵?咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 冤亲债主干扰的化解仪式咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 婚姻生活不顺的解决方法咨询【σσЗ8З55О88О√转ihbwel 儿子不读书的心理调适咨询【微:qq383550880 】√转ihbwel 事业不顺的解决方法咨询【微:qq383550880 】√转ihbwel 财运不佳的改运技巧【σσЗ8З55О88О√转ihbwel 前世缘份的缘分再续咨询【σσЗ8З55О88О√转ihbwel 耳鸣的医学检查咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 婚姻生活不顺的咨询技巧【σσЗ8З55О88О√转ihbwel 事业不顺的改运方法【微:qq383550880 】√转ihbwel 去世的母亲的前世因果【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 心特别累的案例分享【σσЗ8З55О88О√转ihbwel 纠纷的预防措施威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 大龄剩女的婚姻选择有哪些?【σσЗ8З55О88О√转ihbwel 网络营销渠道的效用 国家网络安全中心 英文 全国信息安全大赛培训 公司网站规划案例 上海网站维护 公安局信息安全部,-1 网络安全 标准 重庆营销策划 邮件营销的优点有 信息安全防护技术有限公司 宁波网站设计 微博营销的好处和坏处 长春作网站 网络安全 个人隐私 文章 深圳网络营销师招聘 凯里网站建设 上海平台网站建设公司 瑞星网络安全预警系统 织梦建网站 email营销的基本要素 陕西省网络信息安全保护网 计算机网络安全培训 昆明网站开发 提供常州网站建设公司 网站建设公司 南京 成都网站建设电话 企业营销网站建设公司哪家好 广州市手机网站建设 怎么提高网络安全意识 网络营销环境 成都网站建设市场分析 手机网站做成appc2c电子商务网站 关于网站设计的价格 第三方电子商务平台的网络营销价值 西城公安分局网安大队 国家电网 信息系统信息安全等级保护 信息安全技能要求 企业营销网站建设公司哪家好 营销综合平台建设 网络营销环境ppt 信息安全防护技术有限公司 整合营销推广公司 上海信息安全服务资质咨询,-1 做网站的流程 常州网站建设key de 视频营销的策略是 专业信息安全服务资质咨询,-1 网络安全检查方案 重庆营销策划 常用的信息安全技术 教育部 网络安全 网络安全宣传周活动项目 cisp注册信息安全专家360信息安全大赛 美国网络安全中心主任 网站设计公司无锡 网络安全相关案例 新疆网络安全人才奖 网络营销连接的爱 信息安全等级认定 长沙微信网站公司 网站的需求 网络营销的工具选择安卓网络安全协议 微博营销的好处和坏处 网络营销竞争大吗 政府对网络营销政策 网络安全 屏蔽 计算机网络安全培训 2016信息安全大赛 一等奖 搜索营销的主要模式 景安建网站 天津做网站 网络安全技术有哪些 2015汽车信息安全报 高特效网站 信息安全等级保护培训 网络安全管理员培训 凯里网站建设 网络安全与个人安全 网络营销的工具选择安卓网络安全协议 沧州做网站 整合营销推广公司 计算机网络安全培训 网站信息维护 信息安全等级保护培训 即时通讯工具营销 网站建设排版页面 北京网站设计价格 信息安全评估检查流程 电子商务网络营销 湛江网站优化 邮件营销的优点有 做网站收费 长沙微信网站公司 华途信息安全技术公司 网络安全宣传案例 网络营销工具和方法有哪些 2016杜蕾斯事件营销 呼叫中心信息安全规范 网站设计案例 红茶网络营销方案 重庆网站布局信息公司 网络安全条例的是 新疆网络安全人才奖 网络营销课程培训 网络营销环境ppt 个人个案网站 类型 深圳网络营销师招聘 中国电子网络信息安全 国家网络安全中心 英文 网络营销岗位 中国信息安全监测中心 顺德新网站建设 顺德新网站建设 电子商务网络营销 网络营销网站怎样收费 深圳网络营销师招聘 上海网站维护 网络安全形势严峻 企业营销网站建设公司哪家好 今日头条 移动营销 c# 网络安全编程 网络安全协会文件编号 政府网站建设联系电话 网络信息安全的基本功能,-1 学好网络安全法规 短信 网络营销工具和方法有哪些 网络营销岗位 网络安全 屏蔽 教育部 网络安全 信息安全等级保护 费用 网络安全宣传周活动项目 网络安全系统中的身份认证技术应用及其发展 关于网站设计的价格 陕西省网络信息安全保护网 电子商务网络营销 高特效网站