Rails无法看到表边

时间:2013-08-28 12:45:18

标签: html-table ruby-on-rails-3.2 edge

我正在尝试为我的模型制作一张桌子,我不喜欢它的外观。互联网上的例子看起来很正常,但我的视觉问题。我的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>

它应该是这样的:

我的样子如下:

1 个答案:

答案 0 :(得分:0)

我是以某种基本方式做到的。我将表格行改为:

<table class="pretty" border="1" cellpadding="10">