I'm doing a code snippet where there are 3 "columns" within a "row" of foundation 5 as per the code below:
.row{
background-color:yellow;
}
.align-vertical{
align-vertical:middle;
}
<div class="row align-vertical">
<div class="small-4 columns">
<p>
teste
<br>
teste
</p>
</div>
<div class="small-4 columns">
<p>
Teste
</p>
</div>
<div class="small-4 columns">
<p>
Teste
</p>
</div>
</div>
What's happening is that I can not align these columns vertically. I already assigned " vertical-align:middle
" in both "row" and "columns" and it did not work, I also put a fixed size for "row" and left columns with "height" 100% / p>
Any ideas for vertical alignment?
Code in JSFiddle: Here