Pequena função para manter as colunas com altura igual, independente do conteúdo.
A Pen by Luiz Gabriel on CodePen.
Pequena função para manter as colunas com altura igual, independente do conteúdo.
A Pen by Luiz Gabriel on CodePen.
| <div class="column"> | |
| texto, texto <br/> | |
| texto, texto <br/> | |
| texto, texto <br/> | |
| texto, texto <br/> | |
| texto, texto <br/> | |
| </div> | |
| <div class="column"> | |
| texto, texto <br/> | |
| texto, texto <br/> | |
| </div> | |
| <div class="column"> | |
| texto, texto <br/> | |
| texto, texto <br/> | |
| texto, texto <br/> | |
| </div> |
| function alturaIgual(group) { | |
| maisAlto = 0; | |
| group.each(function() { | |
| pegaAltura = $(this).height(); | |
| if(pegaAltura > maisAlto) { | |
| maisAlto = pegaAltura; | |
| } | |
| }); | |
| group.height(maisAlto); | |
| } | |
| $(document).ready(function() { | |
| alturaIgual($(".column")); | |
| }); |
| .column { | |
| border: 1px solid red; | |
| width: 200px; | |
| float:left; | |
| padding:10px; | |
| margin-right:10px; | |
| } |