class值
caret 下拉符号
divider 分割符号

  

下拉菜单

 div.dropdown
    (a|bottton).dropdow-toggle[data-toggle="dropdown"]>b.caret
    ul.dropdown-menu

  

导航

nav.navbar.navbar-default( .navbar-static-top .navbar-fixed-top .navbar-fixed-bottom .navbar-inverse .navbar-right .navbar-left )
        div.navbar-header>a.navbar-brand
        ul.nav.navbar-nav
            li.active

  

css通配符:
[class*="col-"]{
        background: rosybrown;
    }

  

表格

<table class="table table-striped  ">
            <thead>
            <tr>
                <th>a</th>
                <th>a</th>
            </tr></thead>

            <tbody>
                <tr>
                    <td> b </td>
                    <td>b</td>
                </tr>
            </tbody>
        </table>

  show:

其他属性

table-bordered 表格边框
table-hover 表格悬浮

  

表单


隐藏:.sr-only
<form >
        <div class="form-group">
            <label for="">fil</label>
            <input type="file">
        </div>
    </form>

  

02-12 15:59