- 由Twitter的设计师Mark Otto和Jacob Thornton合作开发,是一个CSS/HTML框架
简洁、直观、强悍的前端开发框架,让web开发更迅速、简单。
- BootStrap2
- BootStrap3
- BootStrap4
| |
| <link rel="stylesheet" href="http://cdn.bootcss.com/bootstrap/3.3.5/css/bootstrap.min.css"> |
| |
| |
| <link rel="stylesheet" href="http://cdn.bootcss.com/bootstrap/3.3.5/css/bootstrap-theme.min.css"> |
| |
| |
| <script src="http://cdn.bootcss.com/jquery/1.11.3/jquery.min.js"></script> |
| |
| |
| <script src="http://cdn.bootcss.com/bootstrap/3.3.5/js/bootstrap.min.js"></script> |
生产环境版
| bootstrap/ |
| ├── css/ |
| │ ├── bootstrap.css |
| │ ├── bootstrap.css.map |
| │ ├── bootstrap.min.css |
| │ ├── bootstrap-theme.css |
| │ ├── bootstrap-theme.css.map |
| │ └── bootstrap-theme.min.css |
| ├── js/ |
| │ ├── bootstrap.js |
| │ └── bootstrap.min.js |
| └── fonts/ |
| ├── glyphicons-halflings-regular.eot |
| ├── glyphicons-halflings-regular.svg |
| ├── glyphicons-halflings-regular.ttf |
| ├── glyphicons-halflings-regular.woff |
| └── glyphicons-halflings-regular.woff2 |
| <!DOCTYPE html> |
| <html lang="zh-CN"> |
| <head> |
| |
| |
| <title>Bootstrap 101 Template</title> |
| |
| |
| <link href="css/bootstrap.min.css" rel="stylesheet"> |
| |
| |
| |
| |
| |
| |
| |
| </head> |
| <body> |
| <h1>你好,世界!</h1> |
| |
| |
| <script src="//cdn.bootcss.com/jquery/1.11.3/jquery.min.js"></script> |
| |
| <script src="js/bootstrap.min.js"></script> |
| </body> |
| </html> |
手机浏览器
——- |
Chrome |
Firefox |
Safari |
Android |
Supported |
Supported |
N/A |
iOS |
Supported |
Supported |
Supported |
桌面浏览器
——— |
Chrome |
Firefox |
Internet Explorer |
Opera |
Safari |
Mac |
Supported |
Supported |
N/A |
Supported |
Supported |
Windows |
Supported |
Supported |
Supported |
Supported |
Not supported |
页面中引入respond.js
| |
| <script src="https://cdn.bootcss.com/respond.js/1.4.2/respond.min.js"></script> |
页面中添加如下代码
| |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
页面中添加如下代码
| <meta name="renderer" content="webkit"> |