我创建了一个 Rails 4 示例应用程序。我添加了 twitter-bootstrap-rails gem 并使用安装程序来设置所有文件:rails generate bootstrap:install less
. 然后我创建了一个脚手架并迁移了数据库,并且 bootstrap.css 出现了它应该的样子。然后我手动创建了一个没有脚手架的模型/视图/控制器,并且没有在其上使用引导 css。这是我的看法:
<table class="table table-striped">
<thead>
<tr>
<th>Name</th>
<th>Age</th>
</tr>
</thead>
<tr>
<td>Jason</td>
<td>John</td>
</tr>
<tbody>
</tbody>
</table>
我应该有一个条纹表,但它不工作。有任何想法吗?谢谢。