Использую ZURB Foundation и столкнулся с проблемой вытягивания блока на всю высоту. Каким способом можно его прижать к родителю
roditel? Дело в том, что у каждого блока свой background и в итоге не красиво видно, если в одном блоке мало текста, а в другом много.
<div class="expanded row roditel">
<section class="large-6 columns">
<div class="<b>block1</b>" style="text-align: center;"><h2>Блок 1</h2></div>
<div class="row">
<div class="large-6 columns">мало текста в блоке</div>
<div class="large-6 columns">много текста в блоке</div>
</div>
</section>
<section class="large-6 columns">
<div class="<b>block2</b>" style="text-align: center;"><h2>Блок 2</h2></div>
<div class="row">
<div class="large-6 columns">мало текста в блоке</div>
<div class="large-6 columns">много текста в блоке</div>
</div>
</section>
</div>