更新时间:2018年12月19日15时27分 来源:澳门大阳城APP入口 浏览次数:
1
|
< link rel = "stylesheet" href = "lib/css/bootstrap.css" > |
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
|
/* 超小设备(手机,小于 768px) */ /* Bootstrap 中默认情况下没有媒体查询 */ /* 小型设备(平板电脑,768px 起) */ @media ( min-width : @screen-sm-min) { ... } /* 中型设备(台式电脑,992px 起) */ @media ( min-width : @screen-md-min) { ... } /* 大型设备(大台式电脑,1200px 起) */ @media ( min-width : @screen-lg-min) { ... } |
1
2
3
4
5
|
< div class = "container" > < div class = "row" > div >
div > |
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
|
< div class = "container" > < div class = "row" >
< div class = "col-xs-12 col-sm-6 col-md-4 col-lg-2" >1 div >
div >
div > |
1
2
3
4
5
6
7
|
< div class = "row" > < div class = " col-xs-3 col-xs-offset-3" >col-xs-3 div > < div class = " col-xs-2 col-xs-offset-2" >col-xs-2 div >
div > |