Bootstrap自定義五列的方法

自定義五列的 CSS 類

這種方法相對簡單的,自定義一套CSS類,儘量和Bootstrap風格保持一致。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
.col-xs-5ths, .col-sm-5ths, .col-md-5ths, .col-lg-5ths {
    positionrelative;
    min-height1px;
    padding-right10px;
    padding-left10px;
}
 
@media ( min-width : 768px) {
    .col-sm-5ths {
        width20%;
        floatleft;
    }
}
 
@media ( min-width : 992px) {
    .col-md-5ths {
        width20%;
        floatleft;
    }
}
 
@media ( min-width : 1200px) {
    .col-lg-5ths {
        width20%;
        floatleft;
    }
}



發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章