2013-08-28 4 views
0

내 모델 용 테이블을 만들려고하고 있는데 외관이 맘에 들지 않습니다. 인터넷의 예는 정상적으로 보입니다. 그러나 제 시각적 인 문제가 있습니다.레일이 테이블 모서리를 볼 수 없습니다.

광산은 다음과 같습니다 : 나는 몇 가지 기본적인 방법으로 이런 짓을

답변

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> 

그것은 다음과 같아야입니다 . 테이블 행을 다음으로 변경했습니다.

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