0

http://getbootstrap.com.vn/examples/equal-height-columns/

I don't understand why .row-eq-height isn't working for me in the Jsbin. Anyone know why this isn't working?

https://jsbin.com/ravudobovo/edit?html,output

Martin Dawson
  • 7,455
  • 6
  • 49
  • 92
  • As per that link, it needs this extra css `.row-eq-height { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; }` https://jsbin.com/tilekuzibo/edit?html,css,output – Marcelo Nov 17 '15 at 18:44

1 Answers1

1

It's not supported by the Bootstrap that Jsbin loads. Just add the custom .row-eq-height declaration to the CSS and it works: https://jsbin.com/xosuyituwu/edit?html,css,output

Link to eq-height column css: http://getbootstrap.com.vn/examples/equal-height-columns/equal-height-columns.css

Jon Weers
  • 1,604
  • 17
  • 27