美文网首页程序员
bootstrap学习笔记

bootstrap学习笔记

作者: 朱敏_ITer | 来源:发表于2017-11-17 15:56 被阅读0次

一.bootstrap的集成与引入

bootsrap中文网
bootstrap官网

集成方法一

下载bootstrap安装包

1.解压安装包后,将CSS、JS文件导入到项目中
2.在项目中引用<link href="css/bootstrap.min.css" rel="stylesheet">

集成方法二

使用CDN在线下载

<!-- 最新版本的 Bootstrap 核心 CSS 文件 -->
<link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css">

<!-- 可选的 Bootstrap 主题文件(一般不用引入) -->
<link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">

<!-- 最新的 Bootstrap 核心 JavaScript 文件 -->
<script src="https://cdn.bootcss.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>

二.bootstrap特性

1.移动设备优先

在head标签中添加
<meta name="viewport" content="width=device-width, initial-scale=1">

2.栅格系统

Bootstrap 提供了一套响应式、移动设备优先的流式栅格系统,随着屏幕或视口(viewport)尺寸的增加,系统会自动分为最多12列。

  • 超小屏幕 手机 (<768px)
    .col-xs-
  • 小屏幕 平板 (≥768px)
    .col-sm-
  • 中等屏幕 桌面显示器 (≥992px)
    .col-md-
  • 大屏幕 大桌面显示器 (≥1200px)
    .col-lg-
列偏移

.col-md-offset-3

嵌套列
<div class="row">
  <div class="col-sm-9">
    Level 1: .col-sm-9
    <div class="row">
      <div class="col-xs-8 col-sm-6">
        Level 2: .col-xs-8 .col-sm-6
      </div>
      <div class="col-xs-4 col-sm-6">
        Level 2: .col-xs-4 .col-sm-6
      </div>
    </div>
  </div>
</div>
列排序
<div class="row">
  <div class="col-md-9 col-md-push-3">.col-md-9 .col-md-push-3</div>
  <div class="col-md-3 col-md-pull-9">.col-md-3 .col-md-pull-9</div>
</div>

3.列表

  • 无样式列表
    移除了默认的 list-style 样式和左侧外边距的一组元素(只针对直接子元素)。这是针对直接子元素的,也就是说,你需要对所有嵌套的列表都添加这个类才能具有同样的样式。
<ul class="list-unstyled">
  <li>...</li>
</ul>
  • 内联列表
    通过设置 display: inline-block; 并添加少量的内补(padding),将所有元素放置于同一行。
<ul class="list-inline">
  <li>...</li>
</ul>

4.表格

  • 条纹状表格
    通过 .table-striped 类可以给 <tbody> 之内的每一行增加斑马条纹样式。
    warning:条纹状表格是依赖 :nth-child CSS 选择器实现的,而这一功能不被 Internet Explorer 8 支持。
  • 带边框的表格
    添加 .table-bordered 类为表格和其中的每个单元格增加边框。
<table class="table table-bordered">
  ...
</table>
  • 鼠标悬停
    通过添加 .table-hover 类可以让 <tbody> 中的每一行对鼠标悬停状态作出响应。
<table class="table table-hover">
  ...
</table>
  • 紧缩表格
    通过添加 .table-condensed 类可以让表格更加紧凑,单元格中的内补(padding)均会减半。
<table class="table table-condensed">
  ...
</table>
  • 响应式表格
    将任何 .table 元素包裹在 .table-responsive 元素内,即可创建响应式表格,其会在小屏幕设备上(小于768px)水平滚动。当屏幕大于 768px 宽度时,水平滚动条消失。

垂直方向的内容截断
响应式表格使用了 overflow-y: hidden 属性,这样就能将超出表格底部和顶部的内容截断。特别是,也可以截断下拉菜单和其他第三方组件。
Firefox 和 fieldset 元素

Firefox 浏览器对 fieldset 元素设置了一些影响 width 属性的样式,导致响应式表格出现问题。可以使用下面提供的针对 Firefox 的 hack 代码解决,但是以下代码并未集成在 Bootstrap 中:

@-moz-document url-prefix() {
  fieldset { display: table-cell; }
}

5.表单

单独的表单控件会被自动赋予一些全局样式。所有设置了 .form-control 类的 <input>、<textarea> 和 <select> 元素都将被默认设置宽度属性为 width: 100%;。 将 label 元素和前面提到的控件包裹在 .form-group 中可以获得最好的排列。

<form>
  <div class="form-group">
    <label for="exampleInputEmail1">Email address</label>
    <input type="email" class="form-control" id="exampleInputEmail1" placeholder="Email">
  </div>
  <div class="form-group">
    <label for="exampleInputPassword1">Password</label>
    <input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password">
  </div>
  <div class="form-group">
    <label for="exampleInputFile">File input</label>
    <input type="file" id="exampleInputFile">
    <p class="help-block">Example block-level help text here.</p>
  </div>
  <div class="checkbox">
    <label>
      <input type="checkbox"> Check me out
    </label>
  </div>
  <button type="submit" class="btn btn-default">Submit</button>
</form>

6.按钮

可作为按钮使用的标签或元素
为 <a>、<button> 或 <input> 元素添加按钮类(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">

7.图片

响应式图片
在 Bootstrap 版本 3 中,通过为图片添加 .img-responsive 类可以让图片支持响应式布局。其实质是为图片设置了 max-width: 100%;、 height: auto; 和 display: block; 属性,从而让图片在其父元素中更好的缩放。
<img src="..." class="img-responsive" alt="Responsive image">

跨浏览器兼容性
请时刻牢记:Internet Explorer 8 不支持 CSS3 中的圆角属性。

图片形状

<img src="..." alt="..." class="img-rounded">
<img src="..." alt="..." class="img-circle">
<img src="..." alt="..." class="img-thumbnail">

相关文章

  • Bootstrap学习资源

    bootstrap笔记总结 Bootstrap入门笔记之(三)栅格系统 我的Bootstrap笔记,常用类名知...

  • bootstrap学习笔记

    一.bootstrap的集成与引入 bootsrap中文网bootstrap官网 集成方法一 下载bootstra...

  • bootstrap学习笔记

    bootsrap的两种使用方式:1)、官网下载bootsrap压缩包:http://v3.bootcss.com/...

  • bootstrap学习笔记

    一、Bootstrap 网格系统如何跨多个设备工作![Uploading Paste_Image_217205.p...

  • Bootstrap学习笔记

    介绍:基于html css javascript 的前端框架 特点:是以移动设备为优先,pc 平板 手机 引入: ...

  • Bootstrap学习笔记

    一、网格布局(栅格系统)概念 1、有12列(col) 2、col有四个类分别适应不同设备 xs——extra sm...

  • Bootstrap学习笔记(三)

    13.缩略图 .thumbnail:圆角的外边框.caption标题字幕样式 13.导航 .nav:标签页基类(u...

  • Bootstrap学习笔记(二)

    7.响应式表单 .form-group表单组样式:将和表单元素包含其中,可以获得更好的排列.form...

  • bootstrap学习笔记(二)

    栅格系统 Bootstrap 提供了一套响应式、移动设备优先的流式栅格系统,随着屏幕或浏览器窗口(viewport...

  • bootstrap 学习笔记(一)

    首先Bootstrap 的目标是在最新的桌面和移动浏览器上有最佳的表现,也就是说,在较老旧的浏览器上可能会导致某些...

网友评论

    本文标题:bootstrap学习笔记

    本文链接:https://www.haomeiwen.com/subject/irxymxtx.html