Hi I have four divs in a bootstrap row. I want all divs in this row to have the same height and not break responsibility. I don\'t know how to do this without breaking respo
To make the website responsive you should specify the width in % and to display 4 divs with same height and specify height
.col-md-3 { width:25%; height:250px; } .row { width:100%; }