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
网络安全架构方案营销网站建设企划案例从化建网站edm营销平台的费用信息安全案例演示信息安全案例演示手机行业的网络营销信息安全 壁纸长沙 做营销型网站的公司信息安全公益课程此篇文章并非笔者原创作品。只是近来想到,文言文的书籍对于大多数人来说存在阅读困难,而通用的译本又比较单调乏味,于是笔者便想到何不用另一种手法将那些好的古文故事复写一遍,添加些许自创的情景和想法,尽量让故事看起来更有趣一些。于是首先选定了《聊斋志异》这本书。当然,还是推荐大家去读一下蒲松龄先生的原文,体会一下这个古代文学的写作手法,感受一下那些古词韵句,那是真正的经典绝伦、回味无穷啊。简介:自古流传,阴间鬼兵传说。1939年前,欧洲战争炙热爆发,大陆“鬼兵”誓死拼守国家,壮烈牺牲,死得旗号“宣告世界,势不可挡”!世界终被和平。 79年后,渴望的野心萌发危机时代,打破了和谐。世界四国五家瓦解崩裂离析,人类种族歧异…… 度过了漫长岁月,这里水上异界国度。漆夜。士兵们烽火交战,死后鲜血滋遍鬼刀,鬼兵得以解封苏生……鬼兵毁灭世界的终端,结局——是缘已错?还是宿已尽。 赵凡刚穿越成为蜀山少宗主,还没有来得及大展拳脚,享受众星拱月的待遇,却因为前身私闯禁地致使紫青双剑暴动误伤门人,被蜀山宗主打入锁妖塔不得翻身! 但幸运的是,赵凡刚被带到锁妖塔,就意外激活了签到系统,在系统的帮助之下,他如同开了外挂一般在锁妖塔内默默变强。 “叮,锁妖塔大门前签到成功,奖励先天剑体。” “叮,锁妖塔内签到成功,奖励培元丹。” “叮,锁妖塔妖坟古门签到成功,奖励极品飞剑。” …… 三千年后,赵凡盘坐虚空,仙道气息震动苍穹,终成一代陆地剑仙,问鼎修仙长生路! 郑前上一世文史出身,古言过目不忘,口吐古言成为儒释道大师兄。 正气、佛子、气运的集成,苟而不得的苦恼,一边苦恼一边口吐古言引动天地异象,一路高歌突破,成为大势所趋、人心所向、天命所归的存在。 但是他与人为善,低调做人,不愿做出头鸟,只想做一个上层人的边角料。厌倦了都市生活的许平,机缘巧合下获得一方神秘仙境。 仙境中有山,有水,有农庄。 仙禽翱翔于山巅,神兽奔走于密林。 于是他回到农村,开启了新的人生。 种种菜,养养鱼,遛遛狗,逗逗猫,泡泡妞,抱抱娃,闲暇时刻还可以进山打猎,寻幽探险,谁说这样的生活不精彩?从地球穿越到平行空间的末世,陌游生该何去何从 伴随而来的召唤师系统、全人和亚人之间的矛盾、魔兽的进攻…… 对故乡的思念…… 我是陌游生,荣耀系统,请多多指教。一次机遇之下少年重获再活一世的机会来到了一处崭新的世界,这里没有花俏绚丽的魔法,人人却都崇尚修炼魂力,修行极其艰难却不断有人前仆后继,因为命运的安排少年同样踏上了这条永无止境的道路那他又会到达怎样的地步?这其中又会有多少命运的羁绊?又会有多少的艰难与辛酸...... &amp;lt;万界魂破&amp;gt;是我的第一本书,所以希望承蒙各位读者的关心原本是各个不同世界和地方的九位勇士,却因一次的使命而是他们走到了一起;今后的路,虽然漫长而艰巨,但他们之间的友谊与羁绊却不会因为任何原因而被斩断,不论在何方,都会把彼此深深地记在心里!!一卷封神榜,一座封神台,为异界带来一个异数,也是一个变数,掀起波澜壮阔的江湖烽烟。五百年必有王者兴,三千载则当圣人现,一万年沧海桑田,阴川之下,造化之工,天照点将,揭开三千年后封神大战的帷幕。龙啸九天,正心泯仇;凤鸣寰宇,修身弘愿。封神榜起,封神台终,登天梯下,上演着血与火的恩怨情仇…… 贫道纯属虚构,如有雷同,你能咋滴?拔刀吧——人生赢家!一个病入膏肓的老头突然变成一个记忆全失的少年后,发现这个江湖还有他未曾领略的一面,既然老天给了他再来一次的机会,无论如何,他也要在这江湖中留下浓墨重彩的一笔......
网络广告营销的优缺点 杭州互联网网站定制公司 网站制作推广公司 酒店网络安全 云流网络安全吗 大连做网站电话 佛山全网营销 微网站需 贵阳网站设计 营销网站建设企划案例 头脑混沌的解决方法咨询【www.richdady.cn】 感情纠纷的情感疏导【www.richdady.cn】 投资项目的案例分享【www.richdady.cn】 阴间生活的前世修行咨询【www.richdady.cn】 冤亲债主的干扰原因【www.richdady.cn】 耳鸣的案例分享【微:qq383550880 】√转ihbwel 投资项目的案例分享【www.richdady.cn】√转ihbwel 冤亲债主的干扰与化解技巧威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 脑部不清晰的症状与治疗咨询【企鹅383550880】√转ihbwel 婚姻生活不顺的解决方法【σσЗ8З55О88О√转ihbwel 不爱读书的咨询技巧【www.richdady.cn】√转ihbwel 事业不顺的职场心态【σσЗ8З55О88О√转ihbwel 孩子学习不好的自我提升【σσЗ8З55О88О√转ihbwel 前世缘份的前世因果【www.richdady.cn】√转ihbwel 家宅磁场的常见问题【企鹅383550880】√转ihbwel 孩子厌学的自我提升【www.richdady.cn】√转ihbwel 去世的父亲的前世故事咨询【www.richdady.cn】√转ihbwel 存不住钱的理财建议咨询【微:qq383550880 】√转ihbwel 失业的应对方法【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 外灵的种类威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 南昌seo网站开发 网站如何制作 网络营销策划书结构 广东信息安全测评,-1 营销与社会营销的区别 信息安全案例演示 支付宝营销活动案例 酒店网络安全 办公室信息安全工作职责,-1 网络与信息安全监控记录表 2014中国信息安全防护大会 网站营销公司 网络营销组织形式有哪些特点是什么意思 策略营销 深圳手机网站设计 企业网络安全风险评估 立体化营销 深圳手机网站设计 企业网站的特点北京启明星信息安全技术有限公司 网络安全服务标准 保护网络安全所采用的技术 大连做网站电话 中国网络安全对抗神州网云 网络安全招聘 信息安全公益课程 网站建设 php 企业网站 国家网络安全教育计划 卫龙网络营销 信息安全威胁的分类 网络营销策略实训 sap信息安全搭建 工业网络安全企业 网络营销哪个机构好 购物网站如何推广 公安局信息安全中心 网站维护? 网络营销策划经理 军用信息安全产品认证 242信息安全计划 2017重大网络安全事件 杭州互联网网站定制公司 重庆企业网站建站 网站建设规划书 网络营销未来趋势 深圳信息安全大学 企业网络安全风险评估 卡通类网站设计 网站术语 工业网络安全企业 网络营销网站建设案例 活动营销网 陕西省信息安全竞赛 哈尔滨营销型网站制作 邮箱群发营销软件 保定php网站制作 从化建网站 抄袭网站 网络广告营销的优缺点 深圳企业做网站公司有哪些 支付宝营销活动案例 广东信息安全测评,-1 深圳信息安全大学 佛山网站建设的品牌 佛山网站建设的品牌 2017重大网络安全事件 信息安全案例演示 武汉建网站公司 南昌seo网站开发 网站上传文件功能实现 上海运营营销号大公司简介 为什么百度要网络营销 公安局信息安全中心 业务对信息安全 我的注册信息安全 无线wifi网络安全 网站如何制作 卡通类网站设计 佛山网站建设公司 培训网站建设 立体化营销 互联网信息安全资质证书 淄博网站排名seo 2014中国信息安全防护大会 网络营销策划书结构 如何打造网站 杭州的网站开发 朝鲜 网络安全 有哪些营销型网站推荐 佛山全网营销 深圳整合营销 郑州手机网站推广公司 网站建设收费 知识营销推广 天猫网络营销手段 卫龙网络营销 卫龙网络营销 公安局信息安全中心 网络与信息安全监控记录表 企业网站制作设计公司 学网络营销学费多少钱 网站维护? 从化建网站 网络信息安全入门 信息安全外部威胁 营销教程 企业网站的特点北京启明星信息安全技术有限公司 网络安全态势分析 购物网站如何推广 深圳手机网站设计 网络营销哪个机构好 网站快速备案 网站代 网络安全技术之常见病毒种类与杀毒软件分析 网站title优化 企业信息安全介绍 商务网站制作公司 长沙 做营销型网站的公司 网络营销发展课完整版 营销平台 成都网络营销 换网站公司 阜阳网站建设 网站营销公司 朝鲜 网络安全 大连做网站电话 上海网站建设的企 2017重大网络安全事件 网络营销网站建设案例 网络营销书提纲 活动营销网 办公室信息安全工作职责,-1 网络营销策划职位要求 中国网络安全对抗神州网云 网络安全招聘 网络安全的书 shark 李老师谈营销 为什么百度要网络营销