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
信息安全等级保护安全建设整改工作指南学校网站模板网站网速慢网络安全风险分析广东网站建设专业公司信息安全服务中小型网站设计公司如何建立自己的网站怎么样做网站的目录结构建站员工网站简介无力,还是看正文吧 邓晨一次意外碰见了星外文明的基地,在生死间获得两件神器,并获得看衍生出的系统。 被盯上了的蓝星,神秘的蜘蛛图案和科技之门,究竟还有什么在窥视着蓝星呢 小镇上突然爆发了危机,镇民集体变成了见人就攻击的人,但唯独优依和她的小伙伴却没事,其中一人似乎对小镇上的事毫不知情,依然过着每天上学放学的日子。林凡穿越大唐十余年,过着闲云野鹤的日子。 不料女儿在国宴暴揍了李承乾! 系统激活,做出抉择。 必然要做护女狂魔! 一脚踹飞侯君集,却被李世民发现自己往事! 自此,闲云野鹤的日子,一去不复返。 侯君集:给我杀了他!为太子报仇! 李世民:林先生若是有半点损伤,诛侯家九族! 李承乾:父皇,我是您亲儿子啊! 李世民:此刻,正是大义灭亲之时!九天路上谁为尊,一遇神帝万法空。上古天域,诸神逆战,神帝陨落伴九天玄石重生,以逆天资质修无上法门,铸混沌金身,力破苍穹,为报挚爱背叛之仇,兄弟夺妻之恨,他逆转苍天,法度万古,诛魔神,斩天妖,血染修仙路。 一声枪响,彻底打破了海天市的宁静。一起持枪杀人案就这样发生了,案发之后,海天市公安局立即展开侦破工作。于是,就开始了一场正义与邪恶的较量。在小时候,父母因为一场车祸意外去世,性格内向的陈阳在读完书后当起了一位网文作者。 相亲失败的那天,陈阳情绪失落地回家,却发现自己小说中的女主竟然跑出来了! 魂界的王国,主角是一位王的后裔,在他刚刚成年庆祝之时,某神秘人在这时袭击了他们,国王濒死将主角救了出去,魂界造成了极大的损失和伤亡,国度也将面临灭亡;而主角则是费劲自身换取强大力量,决定找到事情的来龙去脉并走上了复仇之路…… 空间站机器人和地面站失联,生产这种机器人以及支持机器人运行的公司也发现自己的加拿大服务器同时失联,更发现正在国外度假的董事长一家在几个小时以前也失联。与此同时,市内发生一起未遂谋杀案。四件看似毫不关联的事情其实起因于同一件事,一个在日本的古老家族正在完成一件2000年来徐福交给该家族祖先的任务,进入喜马拉雅山山脉下的悬空之地,获得大地之心,从而掌控穿梭于不同时间维度的方法。 穿越于不同的时间维度,相当于获得长生;但如何穿越于不同时间维度是个问题,穿越后会发生什么事又是另外一个问题。 这是一个挂着科幻和推理羊头,写着人性的故事。因为, 人不能随心所欲支配行为,所以人,都是傀儡一样的存在。【历史种田+江湖八门+富可敌国+复仇】 秦书铭穿越到燕赤国,成为八门祖师爷之子,江湖人尊他为少帅。 开篇背负血海深仇,少年和小妹相互扶持,亲情成为这冰冷的世界唯一的温度。 穿过刀林阵,喝过鸡头血;一拜天为父,二拜地为母,从此少帅入江湖。 这是一个充满骗局的世界,风水局,老千局,扎飞局,鲁班局,层出不穷。 上一世身为百亿富豪的秦书铭表示,不好意思,在下擅长局中局。 小妹问:哥,为什么那些坏人都在替你做事? 秦书铭:傻妹子,因为你哥我是坏人头子! 小妹问:那为什么皇子和军机大臣都对你弯腰? 秦书铭:因为哥有钱啊,富可敌国的那种。 小妹问:那为啥女土匪也对你弯腰? 秦书铭:你还小。一代帝师,遭遇自己十位爱徒的背叛,复苏后彻底迈上魔道之路…… 刀劈帝宫镇四方,掌灭星辰踏踏苍穹,诸天万道群雄起,看尽英豪我为尊!
模板网站更改 信息安全服务资质 安全工程类 北京网站开发建设 维护一个网站 内容信息安全专员 网络安全 实施目标 河北做网站哪家公司好 学信息安全 做运维 上海建立公司网站 国家安全之网络安全 冤亲债主干扰的预防措施咨询【www.richdady.cn】 脑部不清晰的症状与治疗咨询【www.richdady.cn】 如何识别冤亲债主【www.richdady.cn】 事业不顺的职场提升路径有哪些?【www.richdady.cn】 前世今生的改命方法咨询【www.richdady.cn】 投资项目的前世因果【微:qq383550880 】√转ihbwel 去世的母亲的咨询技巧【www.richdady.cn】√转ihbwel 与男友前世的前世案例咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 事业不顺的职场突破咨询【www.richdady.cn】√转ihbwel 公司破产的法律咨询咨询【σσЗ8З55О88О√转ihbwel 财运不佳的财富转运方法有哪些?【企鹅383550880】√转ihbwel 耳鸣的环境影响咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 婴灵的形成原因咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 忧郁症的预防措施咨询【微:qq383550880 】√转ihbwel 失业的自我提升咨询【微:qq383550880 】√转ihbwel 前世今生的轮回传说威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 阴间生活的前世缘分【微:qq383550880 】√转ihbwel 亲子关系的心理建设方法有哪些?【www.richdady.cn】√转ihbwel 事业不顺的职场困境【www.richdady.cn】√转ihbwel 4. 财运与事业发展咨询【www.richdady.cn】√转ihbwel 电信行业信息安全 重庆网站推广 网络安全监督机构 seo营销 网站主持人 学校网站模板 数据信息安全网络主题ppt 芜湖网站建设 电商客户营销软件 咨询营销 信息安全等级保护安全建设整改工作指南 创意的网络营销方案设计 将任意网站提交给google搜索引擎记录下提交步骤 哈尔滨 建网站 小米4p营销策略 网络信息安全的真相pdf,-1 北京网站开发建设 网站建站 深圳网址网站建设公司 建一个网站需要做什么的 网站建设七点 北京信息安全公司业务 中小型网站设计公司 做一个独立网站需要多少钱 我们的优势的网站 哈尔滨 建网站 ctf网络安全比赛证书 受欢迎的汕头网站推广 内容信息安全专员 构建网络安全新生态 泉州网站建设 网络安全管理委员会 服务定价营销概念 营销工具作用 网站建设工作室 互联网信息安全要求信息的 信息安全服务资质 安全工程类 信息安全组织架构局信息安全 信息安全的发展阶段 网络安全扫描工具 国家信息系统信息安全等级保护 香港 信息安全,-1 营销方式与营销策略 芜湖网站建设 网络营销策划的特征 重庆网站推广 网络安全和网络管理 网站网速慢 facebook营销推广范本 受欢迎的汕头网站推广 房地产网站建设 网路营销需求 企业信息安全的问题 如何测试网络安全 seo营销 工业控制系统信息安全指南 电商营销策划公司排名 电商营销策划公司排名 芜湖网站建设 v云计算在网络安全领域的应用 网路营销需求 营销式网站制作 电信行业信息安全 网投网站制作 河北做网站哪家公司好 网络安全 案例 南昌网站建设公司服务器 威海网站制作 营销电商化 信息安全服务资质 安全工程类 网络营销在哪些行业教育行业营销平台 咨询营销 重庆新闻软文营销 深圳网址网站建设公司 第四届互联网网络安全 信息安全专研 建一个网站需要做什么的 维护一个网站 网络病毒营销活动 南京做网络安全的公司 外贸自动营销软件破解版 信息安全风险评估的重要性 长春网站优化 网站建设技术团队有多重要 网站建设七点 信息安全高层会议记录 网站如何设计搜索框 亳州网站制作 实用网站设计步骤 实用网站设计步骤 网络安全 案例 营销资料下载 广州网站制上海整合网络营销公司 广东网站建设专业公司 网站主持人 网络安全差距分析 汕头 网站建设 学网络营销的学校 西安 网络安全公司 网站页面尺寸 使用asp.net制作网站在制作相册时怎样添加图片呢? 网络营销面试邀请电话 重庆网站推广 网站常用颜色 建湖网站优化公司 北京朝阳区网站建设 信息安全竞赛报名流程 互联网软文营销案例 网投网站制作 江西南昌网站定制 服务定价营销概念 2017年信息安全会议 点网站建设 广告营销推广 国家安全之网络安全 精品网站建设公司 怎么样做网站的目录结构 服务定价营销概念 学校网站模板 凡客建网站 网站建设工作室 网络安全管理委员会 网络空间信息安全专业,-1 昆明企业网站开发 吕梁网站建设 宁夏 网络安全和信息化领导小组 网站建站 网络信息安全的真相pdf,-1 桐城网站建设 济南网站建设企业 gb/t 20270-2006信息安全技术 网络基础安全技术要求 汉中建网站 v云计算在网络安全领域的应用 大石桥网站 北京网站建设公司案例