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
东城网站设计e营销网络版网络营销产品策略信息安全预警系统深圳网站制作公司资讯塘厦网络营销外包网络安全设计方案廊坊网站建设动效网站湖南网络与信息安全测评中心网络营销考试案例分析题你若忌惮老魔我,尽管下杀手,我虽转世法力皆空,但也不是你这货色能随意欺负。 美人炉鼎,我自取便是。 我本魔道,莫谈良心 五年后叶云天重返都市,发现当年帮他的美女被害成了瘫子,当年青梅竹马的婚约女友骂他下等人,当年埋葬父母的坟头不许祭拜! 但谁人清楚,他已再不是当年的废物,而是人间最大势力诸天的王者!世界遭到入侵,最强武道大帝力战而亡,重生在九千年后的世界,成了酒馆的店小二,并觉醒了全能系统。 通过系统,张易能够看穿世间功法、丹方和对手的缺陷。 为了抵抗即将而来的乱世,张易再次踏上修炼之路。 在他破格的实力下,对他心怀敬畏的人、闻名而至的人、求爱的人络绎不绝。 然而,就在他步步建造势力之时,那过去让世界陷入恐怖的危险,又开始在暗地里行动了……一腔热血洒天下,雪纵亭茗是安华!一个被朝廷追杀苟且偷生到名震江湖的白家独子白予潇,历经磨难逆天改命!他是江湖六大门派之首,他二十弱冠练就宗承剑意,传承父亲衣钵。一路和反派斗智斗勇同时也引出了朝廷的惊天大秘密……*****《流浪在仙界》的有声图书已经在喜马拉雅上架了,多谢各位多去关注。*****百里长青穿越到仙界后发现:地球的心法远不如仙界的功法,但地球的武技却远高于仙界的武技。 汉武帝以:“侠者,以武犯禁”为借口,将江湖上的大部分武林高手围剿斩杀。百里长青(原名郭解)和他的八个兄弟,四个婢女,七个徒弟,还有五千个生死兄弟,在卫青大将军的十万大军合围后,全部万箭射杀,最后被仙界大佬救下灵魂穿越到仙界的凡人界,要求他们去仙界完成一个非常重要的任务。 百里长青带着他的兄弟和徒弟在仙界杀进凡人界,仙人界,神界等一个又一个的大陆,破解一个又一个的惊天阴谋,最终尘埃落定! 三世为人,穿越到仙界后百里长青一切看淡,性格大变,游戏风尘,风趣幽默尽在本书中。 那一天,章浩获得了一个神奇仪器! 御兽只要戴上这个头盔,就可以通过观看影片的方式变强! 梦里: 【御兽:熊猫】 【已观看《武林熊猫》系列】 【冲拳熟练度:入门→出神入化】 【掌握新技能:迅雷拳(熟练)、无锡指法(熟练)、金钟罩(精通)……】 现实: 【御兽:熊猫】 【已观看《武林熊猫》系列】 【掌握新技能:吃(出神入化)】 章浩:??? 六个小时过去,你就学会了吃? ………… 实战考核现场,看着用出神入化级“吃”一口将金属系对手吞到肚子里的熊猫,众人惊呆了。 章浩故作镇定地笑了笑:”咳咳……没错,我的御兽就是这么清奇!“大明万历四十八年,陈操因为一次意外魂穿明朝,开启了人生霸业之旅我的家在北方农村,在长达两百年的动乱之中,我生活的小农村,发生过许多离奇的故事,这些故事,成了老辈人们口口相传的传说“这万千宇宙,也该定定了。”邵朝阳仰面望着那广阔的无尽星空,心中无限感慨,“可是,我不想再管了。”邵朝阳转过头去,望着身后白衣如雪,宛若天仙的上官靖雪,笑了笑,“就让我,任性一回吧。”兄弟们,快来看。五个男主,五倍快乐。这会是你梦寐以求的爽文吗?上面五个关键词代表着五个流派,五个人在一起会有怎样的火花呢?
厦门网站制作 咨询网站设计 高端平面网站 网络安全监测预警机制 网站的后期维护工作一般做什么 网络安全培训网站 全网整合营销解决方案 信息安全 最新消息 微信平台网络营销 软文的营销 精神不振的原因分析【www.richdady.cn】 事业发展瓶颈突破【www.richdady.cn】 外灵干扰的解决方法咨询【www.richdady.cn】 精神不振咨询【www.richdady.cn】 前世今生的故事有哪些经典案例?咨询【www.richdady.cn】 不爱读书的教育建议威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 如何识别冤亲债主【企鹅383550880】√转ihbwel 家庭关系的自我提升咨询【www.richdady.cn】√转ihbwel 前世今生的咨询方式【www.richdady.cn】√转ihbwel 什么原因意外的原因分析【企鹅383550880】√转ihbwel 如何知道自己是否有前世缘份?咨询【www.richdady.cn】√转ihbwel 孩子学习不好的自我提升【σσЗ8З55О88О√转ihbwel 前世今生的故事如何改变命运?威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 事业不顺的职场建议有哪些?【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 老公家暴的咨询技巧【www.richdady.cn】√转ihbwel 老公家暴的心理调适【σσЗ8З55О88О√转ihbwel 暗恋的咨询技巧威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 内心恐惧胆怯的咨询技巧咨询【σσЗ8З55О88О√转ihbwel 失业的职业规划咨询【企鹅383550880】√转ihbwel 家庭关系的和谐之道咨询【σσЗ8З55О88О√转ihbwel 系统网络安全测试 广州网站制作公司 什么是搜索引擎营销 郑州营销托管公司信息网络安全技术 信息安全预警系统 网站建设陕icp 上海 信息安全 企业,-1 1什么叫计算机网络安全? 台州哪里做网站 什么叫做网站维护 昌平手机网站建设 信息安全资产管理 公司网站url 网络营销成功案例事件 网站与后台 国家金融信息安全 外贸营销语 2015中国网络安全事件 福州做网站的 国际 网络安全竞赛 微信大营销 关于建立国家信息安全产品认证认可体系的通知中国网络信息安全联盟 信息安全软件 网络与信息安全(第二版) 高端广告公司网站建设 新营销方式 深圳网站制作公司资讯 信息安全 教研室 微信大营销 推广营销宣传方案 网络安全设计方案 深圳 网站定制 全网整合营销解决方案 定制网站制作广州 动效网站湖南网络与信息安全测评中心 国家 网络安全 信息 动效网站湖南网络与信息安全测评中心 网络和信息安全通报实行 1什么叫计算机网络安全? 网站作品欣赏 网络推广咨询整合营销 酒泉网站建设 系统网络安全测试 app营销策划案例 信息安全产品分类 网站建立需要多少钱 常州网站制作机构 网络营销能力秀吧 西安信息安全比赛 系统网络安全测试 微信大营销 信息安全 最新消息 营销型网站设计工资 合肥网站建设 web编程网络安全 医院网站建设 价格 内容营销优劣势 网站作品欣赏 专业的网络营销哪家好 上海 信息安全 企业,-1 全网整合营销解决方案 网站制作多少钱资讯 网络安全案例题 郑州营销托管公司信息网络安全技术 嘉祥网站建设 专业的网络营销哪家好 信息安全等级保护测 信息安全的发展历程 高端广告公司网站建设 国际 网络安全竞赛 咨询网站设计 网站的后期维护工作一般做什么 1什么叫计算机网络安全? 网络安全监测预警机制 酒泉网站建设 卫龙网络营销方案 福州做网站的 网络安全法前身 网络安全建设规划 网络安全认证考试 在网站后台上传的图片为什么传到网站上后会变形应该怎么修改 伍佰亿书画网网站 主要营销方式有哪些方面 许可email营销有哪些 开设信息安全大学名单 国家金融信息安全 2015中国网络安全事件 网络和信息安全通报实行 网站作品欣赏 网络安全工作实施流程图 定制网站制作广州 网络营销实训二 鸡西网站建设 信息安全趋势考试 信息安全标准规范 网站建立需要多少钱 购物类网站建设方案 嘉祥网站建设 网络安全大会2017主题 营销每日总结 网站做成软件免费 做网站公司广州 网络安全为标题 中国国家信息安全漏洞库(cnnvd),-1 信息安全专业的课程 系统信息安全要求有哪些内容 福州做网站的 手机网站模板下载 网站建设教程 信息安全数据 什么是搜索引擎营销 网络营销策划公司 东城网站设计 徐州网站制作如何定位 公司网站url 杭州网站建设设计公司哪家好 web编程网络安全 三个成功问答营销案例 中国国家信息安全产品认证证书 email营销的一般步骤 2017年网络安全宣传周 关于建立国家信息安全产品认证认可体系的通知中国网络信息安全联盟 咨询手机网站建设平台 厦门做网站公司 网络安全法漫画 app营销策划案例 网络营销能力秀吧 信息安全测评费用 营销型企业网站策划方案 网站的制作 无锡企业网站制作公司 网站建设教程 线上互动营销logo 餐厅网络营销 网络营销成功案例事件