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.
但凡王功权投资过的企业,一般会收到明、暗两张纸条。整合之后形成的大院线议价能力更强,能够获得更多的上游资源,同时,大公司也能带来更为严格、高效的经营策略,在市场寒冬时候削减成本,顺利渡过。
<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.
腾讯和阿里同时向公司抛去了橄榄枝,最终创始人吕晋杰选择了腾讯投资,“他们任何一家都可以把我们‘杀死’,但是腾讯能够让我们‘死得更快’,因为用户在他们手上。在这个品牌旗下有衣服、饰品、箱包等物品,价格并不贵,但如今,这一网站在运营方面并不如人意。
于是诸如《四平青年之浩哥大战古惑仔》《古惑镇激斗少年》《极品租客俏房东》等网络大电影横空出世,并取得了颇高的播放量和票房收益。 而对用户来说,仅需要支付0.2元/分钟的时长费用与2元/公里的里程费用之和的租车费用即可使用友友用车的贴心服务。
| 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 |
所以确定了英雄的人物形象之后,英雄技能的设计就变得非常的简单了,只需要根据这个人物的形象,设定它的基本英雄定位,然后去《英雄联盟》里面借鉴就可以了,原创技能的设计和组合,交给《英雄联盟》的团队去发愁,《王者荣耀》只需要去适配移动端特性就好了,偶尔有需要就再原创一两个技能,或者把几个英雄的技能混在一起组成一个新英雄的技能,当然也都是为了适配移动端的。
<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.
Palantir的缘起与野心 我们被要求只能在街对面拍Palantir办公室外景。 如果你的界面过于混乱,信息过多,用户就较难理解了。
document.writeln('关注创业、电商、站长,扫描A5创业网微信二维码,定期抽大奖。彼得就是我当时想认识的人,他是我当时最崇拜的人,所以我决定给他工作。
互联网马太效应,更是会让很多问题集中凸显出来,而即使是微信和头条,机器+卧底,从本质上看,我也不觉得能彻底根绝这些灰色流量收割者。以下是钛牛现场发言实录: 一、湘情难忘,分享是最好的礼物 1、各位湖南的老乡们,大家下午好!昨晚你们看《最强大脑》了吗? 我是《最强大脑》余彬晶,也是创蓝253CEO钛牛,生在湖南株洲,创业在上海。
| 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 |