Bootstrap 3 > trying to create columns with equal heights

前端 未结 3 895
遇见更好的自我
遇见更好的自我 2020-12-15 17:07

I\'ve only just started learning so please stick with me and I\'ll try provide as much info as I can.

Using Bootstrap 3 I have been attempting to adjust a number of

3条回答
  •  失恋的感觉
    2020-12-15 17:43

    You can try using CSS negative margins (no jQuery needed)..

    .demo{
        margin-bottom: -99999px;
        padding-bottom: 99999px;
        background-color:#efefef;
    }
    
    #equalheight {
        overflow: hidden; 
    }
    

    http://bootply.com/92230

    EDIT - another option

    Here is another example using CSS3 flexbox spec: http://www.bootply.com/126437

提交回复
热议问题