没有出现白色边框

时间:2018-03-04 14:52:32

标签: css twitter-bootstrap

我正在使用bootstrap切换插件,特别是"自定义文本"这个插件的例子。在文档中这个例子"自定义文本"右边出现白色边框,但边框没有出现。你知道为什么吗?

工作示例:https://jsfiddle.net/w2oy1t1o/1/

HTML:

<table class="table table-striped table-responsive-sm">
  <thead>
    <tr>
      <th scope="col">Item 0</th>
      <th scope="col">Item 2</th>
      <th scope="col">Item 3</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Name</td>
      <td>
        <input type="checkbox" checked data-toggle="toggle" data-on="Ready" data-off="Not Ready" data-onstyle="success" data-offstyle="danger">
      </td>
      <td>
        <input type="checkbox" checked data-toggle="toggle" data-on="Ready" data-off="Not Ready" data-onstyle="success" data-offstyle="danger">
      </td>
    </tr>
    <tr>
      <td>Surname</td>
      <td>
        <input type="checkbox" checked data-toggle="toggle" data-on="Ready" data-off="Not Ready" data-onstyle="success" data-offstyle="danger">
      </td>
      <td>
        <input type="checkbox" checked data-toggle="toggle" data-on="Ready" data-off="Not Ready" data-onstyle="success" data-offstyle="danger">
      </td>
    </tr>
  </tbody>
</table>

1 个答案:

答案 0 :(得分:0)

您必须包含引导样式表才能获得样式。
head中添加此行: <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet">

更新了代码:https://jsfiddle.net/w2oy1t1o/7/