我想讓我的用戶上傳的頭像圍繞在Udemy的Rails應用項目上。圖片仍然以上傳方式呈現。鐵軌上的圓角的阿凡達紅寶石
下面是我show.html.erb文件
<div class="row">
<div class="col-md-3 text-center">
<div class="avatar"><%= image_tag @user.profile.avatar.url %></div>
</div>
<div class="col-md-6">
<h1><%= @user.profile.first_name %> <%= @user.profile.last_name %></h1>
<h3><span class="job_title_icon"><%= job_title_icon %></span> <%= @user.profile.job_title %></h3>
<div class="well profile-block profile-description">
<h3>Background</h3>
<%= @user.profile.description %>
</div>
<% if current_user.plan_id == 2 %>
<div class="well profile-block contact-info">
<h3>Contact:</h3>
<%= @user.profile.phone_number %><br/>
<%= @user.profile.contact_email %><br/>
</div>
<% end %>
</div>
下面是我的用戶,css.scss文件
<div class="row">
<div class="col-md-3 text-center">
<div class="avatar"><%= image_tag @user.profile.avatar.url %></div>
</div>
<div class="col-md-6">
<h1><%= @user.profile.first_name %> <%= @user.profile.last_name %></h1>
<h3><span class="job_title_icon"><%= job_title_icon %></span> <%= @user.profile.job_title %></h3>
<div class="well profile-block profile-description">
<h3>Background</h3>
<%= @user.profile.description %>
</div>
<% if current_user.plan_id == 2 %>
<div class="well profile-block contact-info">
<h3>Contact:</h3>
<%= @user.profile.phone_number %><br/>
<%= @user.profile.contact_email %><br/>
</div>
<% end %>
</div>
你能重新上傳你的CSS嗎?看起來你只有HTML。 –