I am trying to find a good way to use a grid without hacking it at all.
What I want to do is three wide grids (aka small-4for each) in the top row, and then the second row, I want the columns to match, but only with two elements small-4.
Usually the answer was to do one small-4and then a small-8, but since the inputs are set to width: 100%, this will not work for me.
Is there any way to do this out of the box? I know about offset, but this only works for elements that need to be moved to the right.
small-4Right now, with two divs, the right div is floating to the right, which means that it does not match the previous one. I could add additional small-4, but I would like to get acquainted with recommendations on this issue.
Here is my code so you can see what I mean:
<div class="row">
<div class="small-4 columns">
<input type="text" />
</div>
<div class="small-4 columns">
<input type="text" />
</div>
<div class="small-4 columns">
<input type="text" />
</div>
</div>
<div class="row">
<div class="small-4 columns">
<input type="text" />
</div>
<div class="small-4 columns">
<input type="text" />
</div>
</div>
source
share