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
it电脑信息安全管理软件,-1信息网络安全培训网络营销整合性深圳网站建设报价南昌网站制作常用的信息安全技术方法,-1网络专业的网站建设2016中国网络安全大事信息安全导论 沈昌祥网络安全要有什么基础知识微网站app制作未来,太阳老化,地球被吞噬文明程度到达三级的人类被迫去侵略其他星球展开了星际战争前世,寂灭剑神陈夜一人对抗着吞天魔龙,他看着大陆被摧毁,他悲伤无比,他怒吼道:“寂灭归元,同归于尽吧!老怪物!”说罢,他燃尽生命发出宇宙中最强一剑,这时,一颗石头发出了强烈的光芒,将陈夜轮回道3000年前。他一路提升实力,能否打败吞天魔龙?一段绝世恋情,阴阳两隔, 红尘凡世又怎样续缘生死爱恋? 一段困苦岁月,人生低谷, 草根学子怎样改变命运成为商界精英?4000元到1000万,他是怎样赤手空拳实现的? 本书由真实故事改编,送给那些在陌生城市自我奋斗的人们,   人生,就如追逐晨雾中若隐若现的太阳,有温暖,也有风雨。天上仙人,染指人间久矣。 今我大秦既立,大秦国土之上,当无仙人立锥之地。 大秦诸位臣民,朕,先走一步了。 吾,大秦太子,以大秦之名,携人间之力,倒卷天上,从此,再无天上人间之分。他是前地狱特种部队的铁血狂徒。 她是温文尔雅的美女人气女作家。 她是一位跨国公司的霸道女总裁。叶吴凡,宅男一个。意外穿越到异世时,获得了究极无敌修炼系统,丹田被废怎么办,直接重修成极品丹田,再来一把金箍棒,叶吴凡马上就要在一时走上人生巅峰了。这是一个游戏。 这是一个人人公平的游戏。 【当万物复苏时,而你却在沉睡…… 当万物沉睡时,你却重现在永恒的盛世迷梦中……】 不知是谁在Conenaridian百科辞典里写下了这句神秘的咒语,盛世界究竟是什么,人类难以预料…… 他们不知道,有的人为了拯救人类,在这个世界,血流成河…… 就是为了艺术真理的紫晶玫瑰…… 他们为了盛世,为了人世间的盛世…… 乔德的小提琴早已化作尘埃飘逝,沃安的华美矢车菊庄园却世世永恒……那里开放着盛世的花朵,还留着沃安的尸骨……路易的黑白键早已成了碎片,而他的力量最后形成了新的世界,让弗笛踏上了与命运最后交战的路程,人类无法战胜自然的意志,却毁灭了世界,创造了新的自己…… “万事万物,向光生长。”——乔德 “为了我所要追求的美,我宁愿飞蛾扑火然后死去。”——沃安 “与自己战斗,毁灭自己,创造永恒的世界。”——路易 “愿一切都如梦般消失。”——弗笛 毁灭自己,就是游戏的目的…… 冥冥之中,是否有天命注定?什么是善?什么又是恶?若你的心中也无解,不妨暂且由我用杀戮来向你慢慢诠释。少年名叫殷枫,机缘巧合之下穿越至一个陌生的世界——沧澜大陆,坠落于神圣九州。无缘无故被戾气缠上,戾气,一种能令修炼者丧失神智的邪物。邪物?不,这是专属于我的力量!是偶然,还是命运使然,我只能一步步地走下去,用一生的经历去验证。 懒得介绍原本吴向东作为医院高新人才引进计划的成员而备受瞩目,却因为一场突如其来的医疗事故坠入深渊,不但被医院打上“推诿病号”的烙印,更是在同窗的推波助澜下被医院发配到乡下干起了赤脚医生,耽误了前程。 虽然多年后他凭借精湛的技术在医疗行业中闯出属于自己的一片天地,却始终因为那件事被人诟病,无法将自己的健康理念推向全国,而后在某次醉酒中他发现自己重新回到1999年的那场医疗事故的当晚。 于是那个男人回来了,他凭借前世经验,在那个单纯以治疗疾病为目标的年代,始终坚持以病人本身为治疗原则,在他的带领下,医疗行业发生翻天覆地的变化,而他和自己的团队也在一次次医疗事件中,逐步登上世界医学的舞台并伫立在世界之巅。
专业柳州网站建设 app网络安全测试 网络技术营销网络安全病毒逻辑实例 低价网站建设 营销是网站建设策划方案 网络安全运营管理 网络安全技能大赛 俄罗斯网络安全 做网站 深圳 2014年中国网络安全现状 大龄剩女的婚恋现状咨询【www.richdady.cn】 感情纠纷的案例分享咨询【www.richdady.cn】 外灵干扰的案例分享【www.richdady.cn】 解梦的自我提升咨询【www.richdady.cn】 前世老公的前世解析【www.richdady.cn】 灵魂化解咨询【σσЗ8З55О88О√转ihbwel 事业不顺的职场调整有哪些方法?咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 与公婆前世的故事分析【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 冤亲债主的干扰影响【www.richdady.cn】√转ihbwel 无形干扰的前世故事【σσЗ8З55О88О√转ihbwel 公司破产的前世因果咨询【企鹅383550880】√转ihbwel 儿子抑郁症的环境影响咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 迟缓儿的案例分享【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 特殊学校【微:qq383550880 】√转ihbwel 如何识别外灵干扰的症状威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 冤亲债主化解【企鹅383550880】√转ihbwel 亲子关系的心理建设咨询【www.richdady.cn】√转ihbwel 官司的案例分享【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 前世缘份的识别方法【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 心慌胸闷头晕的自我提升咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 信息安全风险管理系统 单位对网络安全等级保护工作的保障情况 信息安全风险管理指南 无线网络安全文章 营销活动培训 周口网站建设 信息网络安全培训 信息安全技术产业联盟 网络安全失泄密黑板报 信息安全的案件,-1 上海网络营销 h5case什么网站 学校网站建设措施 微网站建设 xctf网络安全对抗赛 手机网站 网络安全 加强培训 用凡科网建设的网站和用dreamweaver建设的网站有什么不一样 国家开放大学信息安全学院 信息工程大学信息安全 信息安全相关新闻 合肥网络营销 黄浦网站建设 控制系统信息安全 信息安全保护二级证书 营销型网站建设哪里有 邢台网站建设服务 天津电商网站制作 网络专业的网站建设 网络安全运营管理 信息网络安全培训 常用的信息安全技术方法,-1 信息安全 项目 网络安全语录 天津电商网站制作 宜昌做网站 网络营销的策略 营销综合管理首页 邢台网站建设服务 免费造网站 黄浦网站建设 网络安全和渗透测试工具 国家开放大学信息安全学院 黄浦网站建设 路由器网络安全设置 网络信息安全专题教育 上海网络营销 课件营销 青岛网站设计哪家好 低价网站建设 信息安全风险管理指南 网络安全.pdf 美国 网络安全框架 成都营销型官网 西安网络安全监察支队 整合营销传播 网站添加关键词 信息安全一级学科 腾讯网络营销的挑战 电商网站seo 信息安全管理咨询 学校网站建设措施 怎么创立网站 网站建设: gb t 信息安全 营销活动培训 常用的信息安全技术方法,-1 南昌网站建设公司渠道 省公安厅网络安全部门 上海信息安全公司 网络发布信息安全 电商 信息安全 酒店业网络营销特点网络安全发展的历史 最新信息安全新闻 网站品牌推广 酒店业网络营销特点网络安全发展的历史 营销活动培训 专业柳州网站建设 网站制作 手机 xctf网络安全对抗赛 自做网站 网络安全要有什么基础知识 网络营销整合性 营销解决方案 成都信息安全企业 做网站 深圳 信息安全咨询 资质证书,-1 互联网营销的流程图 在线网站建设 营销调研的方法有哪些 国家信息安全管理体系审核员 网络安全实验室上传关 搜索关于网络安全或计算机/网络取证方面的论坛将网址记录下来. 互联网+ 网络安全 信息安全风险管理系统 信息安全等级保护措施 微网站建设 单位对网络安全等级保护工作的保障情况 企业信息安全保障体系 网络安全审计系统功能 网络安全失泄密黑板报 天津电商网站制作 大学生网络信息安全 营销解决方案 网络营销策划费用清单 信息安全研究生学校,-1 信息安全 项目 泸州网站建设 网络安全实验总结 淘宝营销学 传统营销分析 中国中央网络安全和信息化领导小组 网络信息安全预警 网络安全技能大赛 it电脑信息安全管理软件,-1 云南网站制作 网络安全保卫局3所 企业信息安全保障体系 湖南企业网站建设 周口网站建设 网络安全运营管理 网站css中父级自适应高度没有子级自适应的高度高怎么解决 网络发布信息安全 网络安全运营管理 网络安全技能大赛 东莞全网营销网络推广企业 印尼 网络安全 2016年信息安全事件攻击原理 青岛网络营销 无线网络安全文章 巴中网站建设 营销是网站建设策划方案 诺一品牌营销 网络空间安全 信息安全 泸州网站建设