0

I have a problem making all the heights of my columns the same. I use Bootstrap the size them, but I use sub divs which is where my problem comes in.

Here is a DEMO of my problem

The first "table" is one from an example taken from a Stackoverflow Question

The second one is my example. I need the inned cells to be of the same height as the max row height.

Any ideas please

Here is a preview of the layouts.

enter image description here

morne
  • 4,035
  • 9
  • 50
  • 96

1 Answers1

1

Add this in your css, and you will get the result , https://www.bootply.com/ffG102jhjs

.row.equal .col-sm-3 > div {
 height: 100%;
}
Awsme Sandy
  • 1,398
  • 7
  • 20
  • This worked partially. I used a combination of `.col-sm-10 { display: flex; }` aswell to make it work. – morne Sep 06 '17 at 10:37