I'm trying to determine the best practices for using grid-x "rows" in Foundation 6 XY grid.
Specifically, is there a good rule of thumb for when I should create a new grid-x "row" vs. putting multiple single element cells in a single grid-x "row" (I keep using quotes because they're not technically rows in XY grid).
It seems straight forward when I need to align multiple "column" cells in the same row (e.g., if I want two "columns" side-by-side), but what about when I'm basically stacking single element "rows" (e.g., an h1, a paragraph, another paragraph, etc.)? Should I put those elements in individual cells in individual grid-x elements...
<div class="grid-x">
<div class="cell">
<h1>Text</h1>
</div>
</div>
<div class="grid-x">
<div class="cell">
<p>Text</p>
</div>
</div>
<div class="grid-x">
<div class="cell">
<p>Text</p>
</div>
</div>
Or should I put them in a single cell...
<div class="grid-x">
<div class="cell">
<h1>Text</h1>
<p>Text</p>
<p>Text</p>
</div>
</div>
This is just an arbitrary (and somewhat absurd) example, but what is a good rule of thumb for when a new grid-x should be used?