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
网站注免费营销信息发布重庆建网站佛山网站建设服务器云南信息安全测评中心创想营销企业网站建设做网站创意提升网络安全管理水平2014年中国网络安全现状十多年的老书虫,各种类型看了无数,就想写点带脑子的,哪怕爽文、哪怕无敌,也是带脑子的。 有善人、有恶人,但没有什么真正的反派与对错。你一生追求的是什么,是自由,是真情,是家国,是激情,是真理……带着初心,上路吧。一颗闪着蓝色光芒的类地星球悬挂在星云的边缘,挡在了人类进军太空的航线上。镇物,也叫镇邪之物。在民间,镇物用于镇墓、镇宅等。 镇物用得好可以救人,而被心术不正的人利用,也能杀人于无形。少年天才于洋来到黄海市当保镖,且看他如何走上人生巅峰在人类征服宇宙的无数岁月里,是否会有人想起一颗名为地球的星球 是否有人会重新寻找它的踪迹 是否有人会重新踏入它的怀抱2155年,大战之后的一百多年,地球上一片疮痍,人们依旧生活在物资匮乏的世界之中,此时,由地球联合政府授意,一款由中文meta公司开发的元宇宙游戏《天下》即将上线,这是一款号称人类“第二世界”的游戏,在这款游戏里你可以获得一切,金钱、物资、武器、地位,应有尽有。 少年林昭,一个意外成为植物人的贫民区机车少年,偶尔获得了游戏里的一个内测机会,是否能改变命运,重启新的人生? …… 这款《天下》游戏的故事背景空前强大,融合了各大爆款IP,《修罗武神》《万古第一神》《九星霸体诀》《超级兵王》……你可以在中文IP宇宙里体验各种奇异的世界,不同的人生! 本书又名《剑仙元宇宙》!中医专业文。 在另外时空的一颗蓝星,大战后的数百年里,并没有多少的战争炮火,需抵御的,唯有疾病、动物与复杂的自然环境。 在这医疗知识缺乏的世界,一位年轻的小伙子,从水中被救了出来...... 观千年文化,叹博大精深,以故事之形,解日常之需。 ——本作品以异界古代的方式,文章内容以教徒为主,章末传递日常中医知识。 他是弃婴他是小保安他只有二百块。他用神鬼莫测的医术活人无数,他凭一身武功历经凶险,他最终得成伟业名利双收。他曾经单挑契族大军一万精锐,尽斩马下…… 他曾经孤身一人,闯进齐周国皇庭,亲手拧下了齐周国王的脑袋…… 他曾经奔走千里,追杀三千古蒙国铁骑…… 他是唯一一个从十八层战神塔活着出来的人…… 他是名震天下的绝命公子。 他是让天下英豪闻风丧胆的嗜血战神。 出生可以渺小,但是梦想不能小,一个人可以有缺点,但是不能不进取,可以开始很弱,但是不能一直是弱者,王侯将相宁有种乎,任何的强大都是从弱小一步一步克服困境,磨练成长起来的。 且看一个山野乡村的小孩,如何克服种种条件的限制,一步一步克服困境,磨掉缺陷,在重重困境中突破极限,迈向更高的成就。 这里有成长突破的秘诀,有逆境重生的锻造,有慷慨激昂的誓言,有兄弟情深的情谊,有战天斗地的决心,也有儿女情长的温情,楚洪不只是一个角色,也是一生活在活生生的世界,经历种种生活处境的人。 在这里没有一步登天的机缘,没有重启人生的生而知之,也没有随身携带的金手指,有的只是一步一个脚印的成长突破轨迹,一部走出自我人生的奋斗史,天行渐,生命不息,战斗不止。呼吸还在,成长不止。
传统营销分析 滴滴出行网络营销策略 企业网络信息安全培训班 网络营销计划 案例 信息安全技术产业联盟 信息安全服务安全工程类 网络空间是国家信息安全的核心数据,-1 青少年信息安全展示中心 2017信息安全对抗赛 信息安全产品分类标准 婴灵的超度过程咨询【www.richdady.cn】 人际关系不好时的心理调适咨询【www.richdady.cn】 存不住钱的咨询技巧咨询【www.richdady.cn】 婴灵的超度流程【www.richdady.cn】 心慌胸闷头晕的咨询技巧【www.richdady.cn】 前世今生的轮回理论咨询【企鹅383550880】√转ihbwel 心理咨询与灵性指导【微:qq383550880 】√转ihbwel 长期头脑混沌可能是哪些疾病的前兆咨询【σσЗ8З55О88О√转ihbwel 精神不振【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 发育倒退的心理调适威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 心慌胸闷头晕的前世因果威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 家庭关系的前世记忆威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 什么原因意外的前世案例【微:qq383550880 】√转ihbwel 儿子抑郁症的心理调适【企鹅383550880】√转ihbwel 化解祖灵的仪式流程咨询【微:qq383550880 】√转ihbwel 干扰的自我感知方法咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 与女友前世的前世修行【www.richdady.cn】√转ihbwel 迟缓儿的咨询技巧咨询【企鹅383550880】√转ihbwel 前世老婆的前世记忆咨询【企鹅383550880】√转ihbwel 存不住钱的咨询技巧咨询【σσЗ8З55О88О√转ihbwel 网络空间安全 信息安全 中国信息安全测评中心广东 移动宽带 营销 深圳整合营销优势 网络营销行为有哪些特点是什么意思 信息安全专家 能力 信息安全管理的根本方法 青岛高端网站设计 酒店业网络营销特点 西城网站制作公司 口碑营销的经典案例 中石油信息安全体系 网站建设收费标准报价网络安全语录 网警检查网络安全 建公司网站 网站开发需求 中央 信息安全 中国信息安全测评中心广东 淘宝店营销 微营销的目的 青少年信息安全展示中心 网络空间是国家信息安全的核心数据,-1 建设门户网站需要注意什么 银行信息安全案例 如何建立自已的购物网站 网站制作公司排行榜 无线网络安全解决方案 宁波seo营销 杭州网站设计公司 网络营销计划 案例 搜索引擎营销的功能 第五届网络安全会议 网络及信息安全 铁通 答案 信息安全技术防火墙技术要求 百度竞价营销 微博热点营销事件 网络空间安全 信息安全 网络安全法 漏洞 信息安全调查报告 网络空间是国家信息安全的核心数据,-1 中国信息安全测评中心广东 网站如何优化 唐山网站搭建 青岛网络营销 移动宽带 营销 信息安全工作规划,-1 信息安全技术产业联盟 网络安全保卫局3所 昆明网站建设制作 昆明网站建设制作 微博热点营销事件 厦门做网站培训 青岛网络营销 提升网络安全管理水平 网络整合营销推广公司 个性化网站建设 信息安全专家 能力 网站常用字体 云南信息安全测评中心 唯品会营销策划书 20个中国风网站设计欣赏 网络营销计划 案例 it电脑信息安全管理软件,-1 信息安全等级保护措施 网络信息安全口令攻击 四川全网营销推广哪家好 建 导航网站好 嘉兴网站开发 酒店业网络营销特点 移动网络安全管控 中国移动客户信息安全保护管理规定 网站制作设计 网站建设设计公司 网站设计与制作 微营销的目的 长沙网站优化 微博营销方案 电商营销课程 高端汽车网站建设 河南信息安全电子版 佛山+网站建设 佛山+网站建设 网站常用字体 开展网络安全认证检测 网络安全什么培训好 信息安全产品分类标准 信息安全部主任 如何建立自已的购物网站 模板网站与定制网站区别 网警检查网络安全 俄罗斯网络安全 网络安全有前景吗 营销网站濮阳网站建设 网站飘动 长安公司网站制作 杭州网站设计公司 网站信息安全扫描 网络信息安全 杂志 网络营销自媒体 网站建设中模 网络安全世界领导人奖 网站建设收费标准报价网络安全语录 公益网站建设 引擎营销关键词 网站如何优化 免费网站推广 信息安全管理咨询 国家信息安全中心主任 哈尔滨商城网站建设 建设门户网站需要注意什么 网站建设 北京 网络营销行为有哪些特点是什么意思 营销发展史 中石油信息安全体系 b2c网络营销模式分析 信息安全管理的根本方法 百度网站的优点 网络安全与信息测评 国云科技 信息安全,-1 企业网站建设 重庆建网站 网络空间是国家信息安全的核心数据,-1 课件营销 网站设计与制作 网络营销app 创建微网站 常州企业网站建设价格 建网站知识 中央 信息安全 百度竞价营销 网络信息安全口令攻击 信息安全技能大赛 广东省网站建设 青少年信息安全展示中心 网络营销渠道成本