Linked Questions
213 questions linked to/from How can I make Bootstrap columns all the same height?
88 votes
2 answers
228k views
How to make bootstrap column height to 100% row height? [duplicate]
I haven't found a suitable solution to this and it seems so trivial. I have two columns inside a row: <div class="row"> <div class="col-xs-9"> <div class="left-side"> &...
46 votes
3 answers
177k views
How can I make Bootstrap 4 columns all the same height? [duplicate]
Disclaimer. This question was asked many times before. But since time has passed and now we are close to Bootstrap 4 release with full flexbox support, it is time for new answers for the same question....
1 vote
1 answer
17k views
Bootstrap thumbnails same size [duplicate]
How to force all thumbnails to have the same height? Text is loaded from DB and there is more of it in some, and less in others. The result is shown on a PrtScr. I would like to keep them responsive ...
4 votes
2 answers
14k views
CSS: Force a column to always have full height [duplicate]
I have the following html : <div style="height: 80px"> ... </div> <div class="container-fluid"> <div class="row"> <div class="col-xs-2 col1">...</div> ...
3 votes
3 answers
3k views
Bootstrap: how to make left and right containers with same height? [duplicate]
Code: #left { background-color: rgba(255,0,0,0.3); } #right { background-color: rgba(0,255,0,0.3); } <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"&...
0 votes
4 answers
23k views
How to keep all divs in a row the same height [duplicate]
I'm working on a page that uses Bootstrap and have used this to define columns on this Codepen pen: https://codepen.io/smifaye/pen/GmeQrV However one thing I can't seem to figure out is how to keep ...
5 votes
4 answers
3k views
twitter bootstrap - setting column height based on max column height [duplicate]
I want to make all the columns to same height in a row. So, all columns in a row should have the same height as any column with max height. Fiddler: https://jsfiddle.net/ebwwvy6m/11/ <div class=&...
3 votes
2 answers
4k views
Bootstrap grid system - how to make two columns with equal height? [duplicate]
How can I make two columns having the same height in Bootstrap grid columns? .item-text { padding: 30px !important; /* Flex center. */ display: flex; align-items: center; vertical-...
3 votes
5 answers
2k views
Bootstrap equal height column [duplicate]
Consider the code below: <div class="row"> <div class="col-xs-3"><div id="sidebar">sidebar</div></div> <div class="col-xs-3">content content content content ...
2 votes
3 answers
3k views
float left and right make 2 column to be same height [duplicate]
Why height 100% for the right floated column can't make it 100% height? Now i'm confused what 100% height really means. https://jsfiddle.net/7ybLa9fj/ How to make 2 column to have equal height if I'...
1 vote
1 answer
3k views
Bootstrap display 4 columns on large screen, 2 on extra small [duplicate]
I have in 1 row 4 columns. In extra small screen I would like to display it in 2 row. For other sizes can remain 1 row. This is what I am trying: <div class="row"> <div class="col-lg-2 ...
-2 votes
2 answers
3k views
Multi item carousel with same height cards [duplicate]
Expected behavior: same height for all cards (all cards should adjust their height to the highest card) Actual behavior: height depends on text length Snippet: https://mdbootstrap.com/snippets/jquery/...
-1 votes
2 answers
2k views
Set HTML tag to 100% height [duplicate]
I'm trying to set 100% of height to a HTML element. On mobile, this div will go under the .div_left div, and the floating will be cleared. I have these divs on my theme: <div class="col-md-7 ...
0 votes
2 answers
1k views
How to get the same height on two Bootstrap columns? [duplicate]
I got two columns that I want to have in the same hight. Both are adjusting height after the content (height auto). So sometimes one of my columns has a bigger height then the other one. And I want ...
0 votes
2 answers
1k views
Columns with same height and a background color with Bootstrap [duplicate]
Working with Bootstrap 3. I have two col (col-md-8 and col-md-4) that have the same height. (thanks to a little snippet find here :) ) This is ok, it works. But I need them to have a background-color....