Same height column bootstrap 3 row responsive

后端 未结 16 1776
难免孤独
难免孤独 2020-11-30 00:04

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

16条回答
  •  悲哀的现实
    2020-11-30 00:16

    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%;
    }
    

提交回复
热议问题