Bootstrap是Twitter開源的基于HTML、CSS、JavaScript的前端框架。
創(chuàng)新互聯(lián)10多年成都定制網(wǎng)站服務(wù);為您提供網(wǎng)站建設(shè),網(wǎng)站制作,網(wǎng)頁設(shè)計及高端網(wǎng)站定制服務(wù),成都定制網(wǎng)站及推廣,對成都石涼亭等多個方面擁有豐富的網(wǎng)站制作經(jīng)驗的網(wǎng)站建設(shè)公司。
官方地址:https://getbootstrap.com
中文地址:http://www.bootcss.com/
Bootstrap環(huán)境搭建
bootstrap-3.3.7-dist/
├── css // CSS文件
│ ├── bootstrap-theme.css // Bootstrap主題樣式文件
│ ├── bootstrap-theme.css.map
│ ├── bootstrap-theme.min.css // 主題相關(guān)樣式壓縮文件
│ ├── bootstrap-theme.min.css.map
│ ├── bootstrap.css
│ ├── bootstrap.css.map
│ ├── bootstrap.min.css // 核心CSS樣式壓縮文件
│ └── bootstrap.min.css.map
├── fonts // 字體文件
│ ├── glyphicons-halflings-regular.eot
│ ├── glyphicons-halflings-regular.svg
│ ├── glyphicons-halflings-regular.ttf
│ ├── glyphicons-halflings-regular.woff
│ └── glyphicons-halflings-regular.woff2
└── js // JS文件
├── bootstrap.js
├── bootstrap.min.js // 核心JS壓縮文件
└── npm.js
由于Bootstrap的某些組件依賴于jQuery,所以請確保下載對應(yīng)版本的jQuery文件,來保證Bootstrap相關(guān)組件運行正常。
設(shè)置全局CSS樣式;基本的HTML元素均可以通過class設(shè)置樣式并得到增強效果;還有先進的柵格系統(tǒng)。
Bootstrap 是移動設(shè)備優(yōu)先的
為了確保適當(dāng)?shù)睦L制和觸屏縮放,需要在
為了增強跨瀏覽器表現(xiàn)的一致性,我們使用了 Normalize.css
不再需要手動指定margin: 0之類的
下載地址:https://www.bootcdn.cn/normalize/
Bootstrap 需要為頁面內(nèi)容和柵格系統(tǒng)包裹一個 .container 容器
.container 類用于固定寬度并支持響應(yīng)式布局的容器。
...
Bootstrap 提供了一套響應(yīng)式、移動設(shè)備優(yōu)先的流式柵格系統(tǒng),隨著屏幕或視口(viewport)尺寸的增加,系統(tǒng)會自動分為最多12列。
柵格系統(tǒng)用于通過一系列的行(row)與列(column)的組合來創(chuàng)建頁面布局,你的內(nèi)容就可以放入這些創(chuàng)建好的布局中。
如果多于12列,那么一行放不下,會放到第二行
圖例:
圖例代碼:
.col-md-1
.col-md-1
.col-md-1
.col-md-1
.col-md-1
.col-md-1
.col-md-1
.col-md-1
.col-md-1
.col-md-1
.col-md-1
.col-md-1
.col-md-8
.col-md-4
.col-md-4
.col-md-4
.col-md-4
.col-md-6
.col-md-6
柵格參數(shù)
中等屏幕 桌面顯示器 (≥992px)
.col-md-
使用 .col-md-offset- 類可以將列向右側(cè)偏移。這些類實際是通過使用 選擇器為當(dāng)前元素增加了左側(cè)的邊距(margin)。例如,.col-md-offset-4 類將 .col-md-4 元素向右側(cè)偏移了4個列(column)的寬度。
示例圖:
示例代碼:
.col-md-4
.col-md-4 .col-md-offset-4
.col-md-3 .col-md-offset-3
.col-md-3 .col-md-offset-3
.col-md-6 .col-md-offset-3
通過使用 .col-md-push- 和 .col-md-pull- 類就可以很容易的改變列(column)的順序。
示例圖:
示例代碼:
.col-md-9 .col-md-push-3
.col-md-3 .col-md-pull-9
...
...