x
1
2
3
4
5
6
7
8
9
<div class="block">
This text is within a <strong>block</strong>.
</div>
<div class="block">
This text is within a <strong>second block</strong>. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean efficitur sit amet massa fringilla egestas. Nullam condimentum luctus turpis.
</div>
<div class="block">
This text is within a <strong>third block</strong>. This block has no margin at the bottom.
</div>
1
2
3
4
5
6
7
8
9
<%= bulma_block do %>
This text is within a <strong>block</strong>.
<% end %>
<%= bulma_block do %>
This text is within a <strong>second block</strong>. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean efficitur sit amet massa fringilla egestas. Nullam condimentum luctus turpis.
<% end %>
<%= bulma_block do %>
This text is within a <strong>third block</strong>. This block has no margin at the bottom.
<% end %>