我想在响应式图库中显示以下图像循环:
<% if @items.present? %>
<% @items.each do |item|%>
<% item.attachments[0...1].each do |attachment| %>
<%= image_tag attachment.image.url(:thumb) %>
<% end %>
<% end %>
<% end %>
我尝试在空白的.html.erb
页面中实现this,但是图像在中心垂直对齐,而不像该页面上的示例那样。有什么想法可以实现响应式画廊吗?