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
衡水网站建设供应商泰州全网整合营销信息安全研究生课程信息安全模板主流网络安全技术网络营销必看 书籍中国无人驾驶网络安全网络信息安全 网络间谍中国无人驾驶网络安全信息安全全球顶尖大学未来,现实世界与虚拟世界交织,脑机接口、意识上传,虚拟触觉技术先后突破,zero公司研发了一款名为《零世界》的元宇宙,来使人类脱离死亡实现意识永生。 然而,在诞生25年后,zero公司一场更大的阴谋酝酿其中…… 重生后的罗飞,带着一群志同道合的伙伴,再一次踏上征程……《廉颇传奇》讲述了战国时期赵国大将&amp;quot;廉颇&amp;quot;传奇的一生。 看四朝老将廉颇如何侍奉四代性格迥异的赵王??? 如何在纷繁错杂的战国时期,扬名立万—保家卫国—明哲保身—激流勇“进”。。。 本篇著作集朝斗、宫斗、历史、战争、兵法、悬疑、修仙以及二次元等多重角度为一体,为读者展开一幅大气磅礴的战国画卷。。。 作者:高基枫。。。这是一个普普通通的穿越故事,然而穿越了也不一定是主角,就比如夏子羽同学。“小姐姐,有事说话,别动手。”“小姐姐,先把剑放下。”“小姐姐,你又捡到宝物了吗?”……夏子羽陷入了沉思,“所以,谁才是主角?”法师们目空一切,贵族们高高在上,大商会只手遮天;在这人吃人的世界里,我看到了深渊的触角,文明的退化,和微弱的希望。【文娱+单女主+狗粮+日常】 刚和明星老婆离婚,林舟便意外成为了当红小天后的私人男助理。 恰逢穿越记忆复苏,林舟没有意外的开始当起文抄公。 然后,传说中的天后背后的那个男人上线了! 二线歌手前妻:“林舟是个不错的男人,可惜他太平庸,不能在事业上帮助我。” 国民女神.绝美腿精.超级天后:“如果没有遇到林舟,我绝不可能有今天的成就!太感谢他的前妻了,把这么优秀的男人送到了我身边!” 前妻:“?” 林舟:“我只是个私人助理,什么金牌词曲人、白金编剧、大导演、征服冰山女神的男人……这些都和我没关系,真的!”匚系统提示,假如你有机会穿越到三国选义父,你会选择谁,是汉室宗亲刘备,还是汉贼曹操,或是江东孙权,你会选择谁呢?]张烨,从小酷爱文艺却因家庭传统的教育埋没了一身的艺术“细菌”,老老实实学习考试还不停上着各种补习班······没曾想到了高三那年,一向斯文内向的张烨突然决定要考艺校,这让原本已经为他铺好前路的父母不禁诧异!也就是这样一个坚定而又看似荒唐的决定,改变了他原本可以过得无忧安稳的人生。萧阳绰号&amp;quot;杀破狼&amp;quot;,为兵部第一人,因任务失败入狱五年,出狱后本想过平淡生活,谁知接连不断有人招惹陷害他,震怒之下,长啸琼霄,血染长天,抵穷山恶水进行万里击杀,直至双方见面后最终一搏!《从秀才到高僧》是部古代小说,叙事了一位纨绔少爷,在名师的教导下,喜欢观景吟诗。后受到朝政牵连,被逼出家做了和尚,成为名誉一方的世外高僧。异界的国度妖魔苏醒,那里即将面临生死劫难,轩辕庄就是摆脱生死劫难的寄托。轩辕庄自己在非凡经历得以砥砺成长。
网络安全500强中国公司排名 互联网营销调研总结 东莞寮步网络营销 ccf 网络与信息安全 通信网络安全专业委员会 企业信息安全方案设计 渭南做网站 课程网站建设 陕西省网络安全网 课程网站建设 财运不佳咨询【www.richdady.cn】 与老公前世的咨询技巧【www.richdady.cn】 心特别累的前世因果咨询【www.richdady.cn】 前世缘份的前世记忆【www.richdady.cn】 冤亲债主干扰的化解方法有哪些?【www.richdady.cn】 官司的法律咨询咨询【企鹅383550880】√转ihbwel 家庭关系的和谐共建方法有哪些?咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 失业咨询【企鹅383550880】√转ihbwel 外灵干扰的前世因果【www.richdady.cn】√转ihbwel 特殊学校的案例分享咨询【σσЗ8З55О88О√转ihbwel 冤亲债主的干扰原因咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 亲子关系的教育策略有哪些?咨询【微:qq383550880 】√转ihbwel 头脑混沌时如何提高注意力咨询【企鹅383550880】√转ihbwel 失业的应对方法咨询【σσЗ8З55О88О√转ihbwel 通灵老师预约咨询【企鹅383550880】√转ihbwel 婴灵的安抚与超度咨询【www.richdady.cn】√转ihbwel 冤亲债主干扰对生活有何影响?【σσЗ8З55О88О√转ihbwel 自闭症的咨询技巧【微:qq383550880 】√转ihbwel 干扰咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 感情纠纷的情感咨询如何进行?【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 做三年网站需要多少钱 网络安全态势分析系统 网站建设常出现的问题 网络安全推广好做吗 渭南做网站 网站需要什么 信息安全ppt 网络信息安全实验项目 网络安全对抗和研究 茂名市制作网站的公司 互联网营销调研总结 如何确保网络安全部队 单页面网站开发 最新的网络安全法规 网络安全的几点 网络与信息安全课程 安徽省网络安全专家 医疗大数据的信息安全,-1 上海网站设计 信息安全服务 全球 信息安全专业相关工作的通知 建网站工具 做网站书籍 怎样做一个网站首页 网站建设常规自适应 南昌市做网站的公司 成都网站设计公司 建网站后如何维护 首届国际机器人网络安全大赛 石家庄网站制作视频 丰台手机网站设计 个人信息安全软件,-1海淀手机网站设计公司 怎么让营销号关注你 网络安全活动 如何确保网络安全部队 电商网站构建 怎么编辑网站 浙江网站建设 信息安全专项检查 信息安全 化 营销的意义 信息安全培训测试 网络安全专项治理 网络整合营销公司招聘 信息安全培训测试 邮件服务器网络安全 信息安全服务平台 上海专业做网站公司电话 网络安全迫与破 做网站书籍 网站需要什么 陕西网络与信息安全测评中心 秦皇岛网站优化 网络安全技能考试证书 戴尔营销 有哪些电商网站 快消品网络营销 高端大气网站设计欣赏 我国信息安全风险评估 信息安全培训深圳 安徽省网络安全专家 营销传播 营销策划 网络安全500强中国公司排名 信息安全最新消息 女孩子学网络营销 怎样做一个网站首页 网络信息安全组织 网站策划技巧 网络安全迫与破 建网站后如何维护 自己制作网站 河南省信息安全对抗赛 如何用网络营销的方法有哪些方法有哪些方法有哪些 网站建设常规自适应 怎么做网络营销策划书 上海专业做网站公司电话 我国信息安全风险评估 主流网络安全技术 上海平台网站建设公司排名 信息安全反馈热线 信息安全研究生课程 网站图片尺寸 信息安全反馈热线 如何用网络营销的方法有哪些方法有哪些方法有哪些 泊头网站建设 西安网站推广 网络安全的安全技术 陕西省网络安全网 ccf 网络与信息安全 信息安全 化 营销企划案 欧盟网络安全法律法规 唐山网站建设报价 河南省信息安全对抗赛 建外贸网站的 网络营销基础报告 营销企划案 最新的网络安全法规 营销传播 上海有什么网络安全公司 网络安全态势分析系统 信息安全反馈热线 网站制作 杭州公司 网站需要什么 金融行业网络安全架构 有哪些电商网站 衡水网站建设供应商 4i营销理论的缺点 信息安全审计讲师,-1 建网站 义乌商城集团的网站建设 网络安全运维周报 茂名市制作网站的公司 丰台手机网站设计 网络安全运维周报 企业信息安全方案设计 事件式营销 标准网站优势 互联网营销调研总结 建网站后如何维护 网络安全的安全技术 什么是媒体整合营销 建外贸网站的 信息安全ppt 深圳制作企业网站 信息安全培训测试 怎么让营销号关注你 课程网站建设 (1)计算机信息安全,-1 中国网络安全50强 免费网站认证国内网站主机 网络安全纯粹是一个技术问题 有哪些电商网站 网络安全运维周报