我是通过.html.erb
和bootstrap
写的(Rails)
<span class="label label-primary">
<% book.genres.each do |genres| %>
<%= genres.name %>
<% end %>
</span>
结果是这样的
但实际上,我希望它看起来像
最佳答案
您需要在每个循环中放置span
标记。
<% book.genres.each do |genres| %>
<span class="label label-primary">
<%= genres.name %>
</span>
<% end %>
关于html - 如何修复两个标签相互重叠,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31832779/