-4

我的 index.html.erb 不使用 Twitter 的引导样式。没有 bootstrap 的表看起来很丑,因为 bootstrapszebra-striped类显然无法识别。

但在我看来,其他文件非常自举,所以问题出在这一小段代码中(受这个问题的启发)

为什么会这样?

<table class="zebra-striped">
  <tr>
    <th>Name </th>
  </tr>

<% @students.each do |student| %>
  <tr>
    <td><%= student.name %></td>
  </tr>
<% end %>
</table>

宝石文件:

gem 'bootstrap-sass', '2.1'
gem 'sass-rails',   '~> 3.2.3'
4

1 回答 1

1

阅读文档将有助于解决标记问题 http://twitter.github.com/bootstrap/base-css.html#tables

您还应该更标准地标记您的表格。

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

  <tbody>
  <% @students.each do |student| %>
    <tr>
      <td><%= student.name %></td>
    </tr>
  <% end %>
  </tbody>
</table>
于 2013-02-25T03:33:38.950 回答