-1

ive been using foundation and i am brand new to neat. i want to know how to set the column height wqual to the second column height or maybe minimum heignt equal to second column. thanks.

Question Image

Thanks.

designerNProgrammer
  • 2,621
  • 5
  • 34
  • 46

1 Answers1

1

This is a CSS problem, originally this was solved by using HTML tables, that is no longer the best practice.

CSS3 gives you a display:table that can be used on the container and display:table-cell that can be used on the columns.

There are other more complicated methods of doing this for old browsers, but display:table has pretty good browser support (IE8+).

Peter Wooster
  • 6,009
  • 2
  • 27
  • 39