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
网站营销工具有哪些功能武汉网站设计公司1 网络安全威胁常见的有哪几种?开展网络安全认证 检测 风险评估等活动2014年全国大学生信息安全技术大赛暨四川省大学生信息安全技术大赛网络安全问题产生的原因深圳全网整合营销网络信息安全研究网络安全产品是什么鹤岗做网站一个小伙子迷迷糊糊穿越到异世界,将在这里发生怎样的旅程故事呢?让我们一起来看看吧。 啥?开局送美女。马上到。 银河帝国超级机甲天才流云,在一次营救帝国公主的行动中,被敌方设伏,陷入绝境,一人一甲独战十万机甲战士,最终为掩护公主逃脱,义无反顾自爆了机甲,庞大的能量令空间扭曲,竟形成一个可怕无比的黑洞,而流云最后的记忆停留在自己被黑洞吞噬……待醒来时,已然穿越到了一个陌生的世界。恶魔确实存在,就连不同文明的神话传记亦确有其事。 虽然二十一世纪的今天已经没有人相信,但天界与魔界的战争在暗地里已经持续了二千年,每天都发生在你我身边,只不过普通人无法察觉。 教会一直隐瞒恶魔的存在,没想到机缘巧合,却给一位少年遇上了。 血气方刚的少年遇上薄命的梦魔,还有女神适性99%的巫女,谁也没有料到这正是终结天魔战争的契机…… 异元新生(又名双生) 这是一个平行世界。 我不是我,一样的人,不一样的世界,不一样的行迹轨道。   异世界,原世界之间存在着一可以修炼的不同之处。      寒星雨18岁生辰,意外身陨家中,醒来后,并不知道自己来到了平行世界中,同一时间线,自己小时候的身上。   这是一个异世界,与原世界只有部分的人事物相同,但是却是多了一个名为时灵师的修炼者。   这个次元的人大多都可以修炼,唯独他是一个个例,天生废体,无法修行,但他却是觉得修炼是枯燥的。   直到有一天,才知晓自己的身上发生的事情,原来他可以通过修炼回归原来的世界,否则命不久矣。   知道自己天众之资,才悔之晚矣……我希望这部作品能涵盖上至弘达庄严的创世神话,浪漫史诗,下至充满奇趣的凡间故事,中国五千年的悠久历史,展现了宏大的画卷,波澜壮阔的背景,开拓了我们的想象力,让我们看到了人性的光辉。深邃的思想,和人性的真实。滚滚5000年长河中,有多少的意难平啊?而如今,一个人来到了三国时期,它拥有着改变这一切的机会,他又会做如何选择?或者他有什么选择的办法?这一切的一切到底该如何是好?当霍去病与王昭君产生羁绊,当项羽再次遇到虞姬,当曹操一转身,发现自己的五子良将变成吕布的八健将,这一切的一切又该如何探索?这终究将成为一场世界性的决战,这是最精彩的时代,这是最混乱的时代 叶飞流躲在家里偷偷的修仙,对外谎称在家写小说。 别人都不知情,直到某一天,为了救邻居家的小孩,叶飞流一只手拦下冲撞过来的一辆货车。 全村都震惊了。 从此以后,叶飞流带着叶家全族修仙。 十年后,世界与异空间融合,无数外域异兽入侵,一夜之间,全球陷入绝望之中。 就在这个时候,叶家全族挺身而出,御剑飞行,抵挡异兽洪流。 举世震惊! 外国:“天啊,龙国怎么会有那么强大的人。” “我为什么没有生在龙国?!” “啊啊啊,龙国人好幸福,他们有叶家。” PS:土豆出品,必属精品(嘿嘿)! 孤儿徐青巧获民国奇人传承后,懵懵懂懂闯入现代社会下边隐藏的江湖世界。 白天,他是文质彬彬博学多知的鉴定师,是无数少女梦想中的男神,是名利双收的行业大拿。 晚上,他是武艺高强狠辣无情的杀手,是无数犯罪闻风丧胆的克星,是现代江湖里诞生的武林盟主。 一人双角的精彩人生,从一件扁桃木雕道祖骑牛像开始。 守川以为他在这个世界只是个过客,修炼这种事也是奔着回到原来世界而去,直到一年后,当穿越的隧道在他面前张开时,守川第一次选择了自己的命运——那就留在这个世界贡献自己的一点能量吧……他不过是想重整世界。
鹤岗做网站 王者荣耀网络安全法 email营销是什么 上海网络安全考试 巴彦淖尔市 网站建设 企业级服务 网络安全 信息安全示例 昆明营销团队 免费网站专业建站 信息安全体系 迟缓儿的心理调适咨询【www.richdady.cn】 外灵干扰的环境影响【www.richdady.cn】 冤亲债主干扰有哪些症状?咨询【www.richdady.cn】 迟缓儿的治疗方法【www.richdady.cn】 孩子不爱读书的阅读计划【www.richdady.cn】 性压抑的情感释放【企鹅383550880】√转ihbwel 失业后如何快速找到新工作咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 特殊学校的环境影响咨询【微:qq383550880 】√转ihbwel 迟缓儿的案例分享【微:qq383550880 】√转ihbwel 婴灵的真实案例有哪些?威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 亲子关系的家庭氛围如何营造?威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 去世的父亲的前世故事咨询【σσЗ8З55О88О√转ihbwel 孩子不爱读书的应对策略有哪些?咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 如何知道自己有前世缘份?咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 存不住钱咨询【www.richdady.cn】√转ihbwel 强迫症的环境影响咨询【σσЗ8З55О88О√转ihbwel 自闭症咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 前世缘份【www.richdady.cn】√转ihbwel 心慌胸闷头晕的前世记忆【σσЗ8З55О88О√转ihbwel 感情纠纷的情感咨询如何进行?【www.richdady.cn】√转ihbwel 常用网络安全工具 做一个网站要多少钱 什么平台进行问答营销 网络安全宣传内容 信息安全竞赛 ctf 公司信息安全管理建议 高端网站设计品牌 嘉兴网站开发 网络营销服务名词解释 澳大利亚 网络安全部 网站构架图 信息安全测评师 考试 家居企业网站建设新闻 网络安全周报告 属于信息安全产品的有 网络微营销 网络营销创业 深圳营销型网站 炒作营销 旅行社网站模版 四川开设信息安全专业吗 洛阳建网站 杭州整合营销企业排名 网络信息安全 特点有 网络安全logo设计图片 信息安全意识培育途径 模板网站与 定制网站的 对比 营销型网站定制 网站拖拽 网络营销策划方案案例 洛阳建网站 网络安全论 西安做网站的公司 信息安全测评师 考试 信息安全等级保护测评 费用 网络安全宣传内容 网络安全自主可控 深圳全网整合营销 提供邢台网站优化网站建设 网络推广 许可email营销主题设计原则包括 信息安全竞赛 ctf 上海网络安全公司招聘 信息安全体系 1 网络安全威胁常见的有哪几种? 专注于网络安全 如何做搜索引擎营销策划 学网络营销4个月多少钱 知名信息安全企业排名 上海网络安全公司招聘 app营销案例 中国国家网络与信息安全信息通报中心,-1 网络信息安全日 嘉兴网站开发 肥城网站制作 提供常州网站建设 重庆建网站 网络营销服务名词解释 网络安全培训课程 微信营销最新资讯 信息安全等级保护四级 澳大利亚 网络安全部 网站制作公司 顺的 中国信息安全 测评中心 国家信息安全管理的主要规定包括,-1 网络信息安全培训招生简章 国家网络安全中心主任 什么是网络安全 北京市信息安全服务能力等级证书 信息安全测评师 考试 网络安全周 负载均衡 免费网站申请 信息安全竞赛 ctf 网站制作案例 属于信息安全产品的有 成都整合网络营销公司 主流信息安全产品和服务包括,-1 企业手机网站建设流程公司ad域名和公司网站名相同内部电脑无法访问公司网站 鹤岗做网站 国家信息安全评测中心 网络营销新方式 属于信息安全产品的有 2014年全国大学生信息安全技术大赛暨四川省大学生信息安全技术大赛 网络安全产品是什么 信息安全体系 网络微营销 定制型网站 第二届移动互联网产业发展与网络信息安全研讨会在京举行 驱动中国 最有吸引力的营销活动 中国十佳企业网站设计公司 网络营销创业 网站建设新趋势 网络营销软件代理 深圳网站建设外包公司 深圳营销型网站 网站营销工具有哪些功能 学网络营销费用 信息安全平台 炒作营销 信息安全管理政策 未然蔚然网络营销资讯 网站制作公司 顺的 做网站便宜 信息安全经理 简历 网站制作案例 信息安全技术有 网络营销成本低的原因 什么是网络安全技术 网络安全问题产生的原因 信息安全 文件 国家网络安全审查 模板网站与 定制网站的 对比 长春做网站 网络营销新方式 杭州整合营销企业排名 email营销是什么 紫色网站模板 青岛网站建设价格 网络信息安全 特点有 营销型网站定制 南京企业网站制作价格 app营销案例 成都整合网络营销公司 开展网络安全认证 检测 风险评估等活动 澳大利亚 网络安全部 信息安全等级保护四级 品牌营销主题 滴滴 哪些博客网站好用?怎么编辑信息才容易被百度蜘蛛抓取到 珠海品牌网站设计 怎么做病毒营销方案 上海 互联网营销公司排名网站建设:中企动力 外贸网络营销课程总结 提供常州网站建设 巴彦淖尔市 网站建设 王者荣耀网络安全法 腾讯信息安全运营中心