0

我正在尝试为我的模型制作一张桌子,但我不喜欢它的外观。互联网上的例子看起来很正常,但我的有视觉问题。我的 index.html.erb 是

<table class="pretty">  
  <tr>  
    <th><%= sortable "name" %></th>
    <th><%= sortable "city" %></th>
    <th><%= sortable "country" %></th>
    <th><%= sortable "street_address" %></th>
    <th><%= sortable "sector" %></th>
    <th><%= sortable "telephone" %></th>
    <th><%= sortable "fax" %></th>
  </tr>  

  <% for company in @companies %>  
  <tr>  
    <td><%= company.name %></td>
    <td><%= company.city %></td>
    <td><%= company.country %></td>
    <td><%= company.street_address %></td>
    <td><%= company.sector %></td>
    <td><%= company.telephone %></td>
    <td><%= company.fax %></td>
  </tr>
  <% end %>
</table>

它应该如下所示:

我的看起来像这样:

4

1 回答 1

0

我以某种基本方式做到了这一点。我将表格行更改为:

<table class="pretty" border="1" cellpadding="10">
于 2013-08-29T13:27:22.407 回答