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
html 5+css 3网页设计与网站布局 从新手到高手主动测量 网络安全网络安全宣传案例网站建设公司 南京制作校园网站石家庄网站制作公司成都网站建设v营销型手机网站企业网络安全防护方案个人网站建设 贺宏己是一名十九岁的大学生,三观正,爱国家,家境富有,但是钱财来源多是他那唯利是图的父亲收敛来的不义之财,曾被贺宏己多次匿名举报。 有一天一个女孩告诉他父亲,如果再行不义之事,报应将会降临在你的后代之身,果不其然,在贺宏己的父亲想要挖掉英烈之墓建造房产时,贺宏己便意外坠楼了,这一切贺宏己都不知道是如何发生的。 在坠楼的一瞬间,贺宏己来到了一片空白的空间内,他遇到了一个穿着绿裙子的女孩,这个女孩改变了贺宏己的一生,她给予了贺宏己特殊的能力,把他带到了武工队传奇的世界里。 作为上清派第243代单传茅山道士,师傅临终前将门派大典传授给我 送葬途中风云突变,恍惚间居然被传送到一个陌生的元素复苏的西幻魔法世界 什么?门派大典也随我穿越异界?小怪遍地有?专业对口修炼事半功倍?魔法世界还有女巫? 临兵斗者皆阵列在前,喂喂,这可是正二品英魂,不是什么黑魔法亡灵术 救命,我不想探索这世界的奇奇怪怪,我只想好好修道五彩斑斓的背后总是深邃的黑……马克?李,无论干掉你的是谁,我都会为你报仇,以告慰你在天之灵。 注①:第一次写文,用的是第一人称,慎入。 注②:因为是同一个作者写的, 所以这篇也能在话本小说(如果有更多 人支持的话将来可能会在B站?)找到。 注③:作者是学生党,随缘更新。 遥望着远方的星辰,恢宏的银河就在那里。 神秘的黄河把李生带到了这神奇的地方,这个有着古老文明的地方穿越末日世界,人类苦苦挣扎求存,陈枫却意外觉醒末日游戏系统,开启了不一样的末世体验。 别人面对怪物,东躲西藏,恐惧不安,陈枫却开启了刷怪模式; 别人辛苦锻炼,提升能力,九死一生,陈枫只要动动手指,能力全满; 别人为了物资,出卖一切,收获甚微,陈枫只要打怪,就能爆出来。 陈枫把异世九头蛇踩在脚下,“我今天只想吃蛇羹,你可别不识抬举!”20世纪三好青年穿越到洪荒大陆,与三清结拜,与十二祖巫结拜,复活盘古,征服其他神话。重生即传奇 苦乐童年后,巧合之下有了不同的身份 身怀高能的他更是如虎添翼 善与恶,一念间 向善而行 终究书写炫丽的传奇人生……意外穿越异世,别人成仙成佛,惨点的也是废物逆袭。 可是到了古二蛋这里,他却发现自己一点盼头也没有。 因为这家伙成为了一个骷髅兵!还是一个没有脑袋的下等残躯战损版骷髅兵! 生活不易,骷髅叹气,望着自己一两肉都没有的身体,古二蛋决定要逆袭给所有人看! “金手指系统!我要称王称霸!给我发威!” “收到宿主期盼,本系统已按照期盼进行修改,正式进化为骷髅领主系统,你可以通过收集资源来强化麾下士兵啦!而且是没有上限的强化呦!” “哦?这么厉害的吗!那么这种能力也能作用到我的身上对吧!” “…………” “对吧?” “…………” “对吧?!!!”未来世界,地界的科学家们建立元宇宙,当人们通过生存仓接入元宇宙后,整体会获得大幅增强。为此,地界领导者组成管理者强制所有人18岁后都需要进入元宇宙生存,利用增强的思维能力为人类星际旅行事业做研究,以及加快人类的科技进步速度。 唐安穿越到西游成了唐僧,从此西行小队画风就变了。 “一路上都搜仔细点,没睁眼的小耗子都要给我带走!” “悟空,去给他两耳光,让他长长记性。” “何方妖孽?大威天龙!”
营销型手机网站 网络安全技术有哪些 信息安全会议排名 中国网络安全大会17 脑白金的营销 湛江网站设计 网络安全员培训 德州网站优化 潍坊网站托管 2014网络信息安全悬念式营销 什么原因意外的原因分析【www.richdady.cn】 前世今生的轮回传说咨询【www.richdady.cn】 婚姻生活不顺的解决方法【www.richdady.cn】 升迁障碍的心理调适咨询【www.richdady.cn】 失业的原因分析咨询【www.richdady.cn】 孩子不爱读书的原因咨询【微:qq383550880 】√转ihbwel 精神不振的解决方法【企鹅383550880】√转ihbwel 缺心眼的心理调适【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 前世缘份的常见类型咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 塔罗牌占卜与心理分析【微:qq383550880 】√转ihbwel 忧郁症的改运方法【σσЗ8З55О88О√转ihbwel 阴间生活的前世记忆【企鹅383550880】√转ihbwel 前世今生相关威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 孩子不爱读书的原因咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 如何改善人际关系【微:qq383550880 】√转ihbwel 成人发育倒退的可能症状【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 公司破产的环境影响【www.richdady.cn】√转ihbwel 为什么过世的前世修行咨询【企鹅383550880】√转ihbwel 强迫症的案例分享咨询【企鹅383550880】√转ihbwel 婴灵的安抚有哪些实用技巧?咨询【σσЗ8З55О88О√转ihbwel 网站的需求 郑州上市企业网站建设 网络安全 管理 网络安全法 互联网 网络安全宣传案例 网络安全技术有哪些 运用政府职能 网络安全 信息安全会议排名 网站前台 网站的总体架构 高密做网站 网络安全中CIDF英文缩写 计算机网络安全服务包括 维护国家信息安全 上海定制网站建设公司 主动测量 网络安全 网络安全要从供应链抓起 苏州网站seo 制作网站公司唐山 网站设计案例 株洲网站优化 网络安全相关案例 营销成交关键词 提供信息安全服务 资质,-1 深圳网站优化公司 网站的总体架构 高密做网站 网络安全中CIDF英文缩写 计算机网络安全服务包括 维护国家信息安全 华途信息安全技术公司 珠海集团网站建设 企业信息安全评估报告php网站设计 公司手机网站设计 网络安全管理 网络安全要从供应链抓起 html 5+css 3网页设计与网站布局 从新手到高手 网络安全小工具 网络安全极客 郑州做网站汉狮网络 金融信息安全的复杂性 网站建设 北京 网站建设 北京 怎么把代码添加到网站内所有页面 的</body>标签之前 提供常州网站建设公司 html 5+css 3网页设计与网站布局 从新手到高手 网络互动营销公司 信息网络安全监察工作 2011年中国互联网网络安全态势报告 网络安全 管理 网络安全相关案例 东莞企业营销型网站建设 南昌寻南昌网站设计 国家信息安全测评认证中心 网络安全在哪设置 制作校园网站 郑州做网站汉狮网络 厦门做网站培训 网络安全法 互联网 广州微网站建设机构 个人网站建设 制作网站公司唐山 网站兼容9 建 导航网站好 信息安全竞赛强队 信息安全专业知识 网络安全宣传案例 株洲网站优化 网络安全员培训 高端网站定制 网络安全攻防linux 主动测量 网络安全 网站建设公司 南京 网络安全数据集 网络安全数据集 网络安全相关案例 成都网站建设v 游戏公关营销案例 信息安全人才 有什么网络安全的网站专业的搜索引擎营销企业 移动营销目的 酒店行业 互联网营销 网站的总体架构 营销成交关键词 盐山网站 成都网站建设v 网络安全的应用 整合网络营销 客户 企业网络安全防护方案 国家信息安全工程研究中心有限公司 信息安全会议排名 企业网站的一、二级栏目名称 老王解读网络安全法 番禺网站推广 重庆营销推广公司电话 票务网站建设 网络安全调查策划 营销推广公司西安 淄博做网站推广哪家好 网站前台 东莞企业营销型网站建设 网站设计案例 票务网站建设 手机网络营销的案例分析 微博营销涉及的范围 注重信息安全 百川网站 网站的总体架构 国家信息安全测评认证中心 中国网络安全大会17 怎么把代码添加到网站内所有页面 的</body>标签之前 做网站需要学什么 上海定制网站建设公司 专业的搜索引擎营销企业 参加营销活动的好处 瑞昌网站建设 网络安全宣传案例 网络安全管理 国家信息安全实验 网站建设公司 南京 做网站的流程 饥饿营销双刃剑图片 传统营销经典案例 厦门做网站培训 个人网站建设 网络安全技术有哪些 提供常州网站建设公司 自助免费网站制作 自己创网站 大良网站设计价格 大良网站设计价格 企业网络安全防护方案 信息安全评估检查流程 网络安全权威认证 拐角型网站