I am trying to indent an entire loop, the one below, so i am assuming I need to put a tag on the entire thing so that I can point to it in the CSS file. I just dont know what format I should put it in.
<% micropost.comments.each do |comment| %>
<div class="box">
<b>Vendor:</b>
<%= comment.commenter %><br>
<b>Deal:</b>
<%= comment.body %>
</div>
<% end %>
You can use
content_tagas below to wrap content in adivwith a class name.