栅格系统通过一系列的行和列的组合来创建页面布局,
行必须包含在.cintainer(固定宽度)或者.container0fiuid(100%宽度)中以便为其赋予合适的排列 通过行在水平方向创建一组列 栅格系统将每一行分为12份,然后用col-XX-num的方式控制每一个元素占多少份
行状态样式
active:鼠标悬停在行,或单元格上时的颜色success:成功或积极的动作info: 普通的提示信息或动作warning:警告或提醒注意danger 危险或负面影响的动作 <tr> <td class="success">成功</td> <td class="info">普通</td> <td class="warning">警告</td> <td class="danger">危险</td> </tr>单独的表单控件会被自动赋予一些全局样式。所有设置了 .form-control 类的 、 和 元素都将被默认设置宽度属性为 width: 100%;。 将 label 元素和前面提到的控件包裹在 .form-group 中可以获得最好的排列。
<div class="container"> <form> <div class="form-group"> <label for="exampleInputEmail1">电子邮箱</label> <input type="email" class="form-control" id="exampleInputEmail1" placeholder="电子邮箱"> </div> <div class="form-group"> <label for="exampleInputPassword1">密码</label> <input type="password" class="form-control" id="exampleInputPassword1" placeholder="密码"> </div> <div class="form-group"> <label for="exampleInputFile">选择文件</label> <input type="file" id="exampleInputFile"> <p class="help-block">提示信息</p> </div> <div class="checkbox"> <label> <input type="checkbox"> 多选框 <br /> <input type="checkbox"> 多选框 <br /> <input type="checkbox"> 多选框<br /> </label> </div> <button type="submit" class="btn btn-default">提交</button> </form> </div>为 、 或 元素添加按钮类(button class)即可使用 Bootstrap 提供的样式。
<a class="btn btn-default" href="#" role="button">Link</a> <button class="btn btn-default" type="submit">Button</button> <input class="btn btn-default" type="button" value="Input"> <input class="btn btn-default" type="submit" value="Submit">https://v3.bootcss.com/components/#nav
https://v3.bootcss.com/components/#pagination
https://v3.bootcss.com/components/#thumbnails
https://v3.bootcss.com/javascript/#modals
https://v3.bootcss.com/javascript/#carousel