0

Currently working on a design which involves three columns with tiles nested inside of them. Using the grid system in Bootstrap, i'm able to fit the widths and have them change fluidly, but i would like the same thing to happen for the height of the page, is there any sort of option for this?

https://postimg.org/image/3xaqengav/

Liam Paris
  • 65
  • 6
  • 1
    Maybe this is a duplicate question, already answered [here](http://stackoverflow.com/questions/19695784/how-can-i-make-bootstrap-columns-all-the-same-height) – Luca Jul 21 '16 at 16:51
  • One approach is to use flexbox. – Zim Jul 21 '16 at 17:28

1 Answers1

0

You can use flexbox-based equal-height columns to your Bootstrap's grid system. This feature is already provided by the core Bootstrap. Just add .row-eq-height to your row's class. Here's the example : http://getbootstrap.com.vn/examples/equal-height-columns/

Billy Halim
  • 182
  • 1
  • 10