The default grid system provided in Bootstrap utilizes 12 columns that render out at widths of 724px, 940px (default without responsive CSS included), and 1170px. Below 767px viewports, the columns become fluid and stack vertically.
<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.
<div class="row">
<div class="span4">...</div>
<div class="span4 offset4">...</div>
</div>
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.
.span3 columns should be placed within a .span6.
<div class="row">
<div class="span6">
Level 1 column
<div class="row">
<div class="span3">Level 2</div>
<div class="span3">Level 2</div>
</div>
</div>
</div>
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.
” 在流量越加珍贵的今天,手握大把流量的WiFi万能钥匙等公司迅速成长为各自领域的独角兽。 有意思的是,双11期间魔力TV还联手“淘宝头条”打造了《脑洞研究所》系列短视频,以生活技能和恶搞趣味内容为电商产品导流。
<div class="row-fluid">
<div class="span4">...</div>
<div class="span8">...</div>
</div>
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.
<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>
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>
<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>
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.
” 没有库存的商业模式,稳健的运营、资本的追捧,一切看起来都很完美…… 被外部环境和资本裹挟前进 2011年1月,乐淘发布了第三轮融资信息,联创策源、老虎基金、德同资本追加注资3000万美元。 3月13日,美国旧金山议员帕斯金起草的有关共享单车监管的法案已进入议会土地和交通委员会讨论。
据了解,在美国,15%的募集基金是通过股权转让的方式退出的,而在中国这个数字还不到1%。 第三次复活是2017年年初Nokia6的发布,诺基亚在失去lumia之后终于有了新的旗舰。
| 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 |
A轮死是一个预言般的魔咒。
<meta name="viewport" content="width=device-width, initial-scale=1.0">
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:
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: 767px) { ... }
/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 979px) { ... }
/* Large desktop */
@media (min-width: 1200px) { ... }
For faster mobile-friendly development, use these basic utility classes for showing and hiding content by device.
在中国互联网版图上,除北上深杭外,有两个地方很出人才,一个是湖北,一个是福建。月收入1.2万元-1.5万元的人,幸福感是最高的。
2016年7月25日,白山宣布过亿元B轮融资,由贵安新区新兴产业发展基金和贵安金融投资有限公司领投,上海擎承投资中心、上海融玺创业投资管理有限公司等A轮投资方跟投。document.writeln('关注创业、电商、站长,扫描A5创业网微信二维码,定期抽大奖。
“当你发现最初的预想是正确的,却没有施展拳脚的空间时是很痛苦的。所以,王雪红带领HTC转战VR,不是说一定要执着的带着赌徒心理去攻VR,而是到了一个不得不作出选择的时候
| Class | Phones 480px and below | Tablets 767px and below | Desktops 768px and above |
|---|---|---|---|
.visible-phone |
Visible | Hidden | Hidden |
.visible-tablet |
Hidden | Visible | Hidden |
.visible-desktop |
Hidden | Hidden | Visible |
.hidden-phone |
Hidden | Visible | Visible |
.hidden-tablet |
Visible | Hidden | Visible |
.hidden-desktop |
Visible | Visible | Hidden |