I have not found a suitable solution for 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"> <p>sdfsdf</p> <p>sdfsdf</p> <p>sdfsdf</p> </div> </div> <div class="col-xs-3"> <div class="something">asdfdf</div> </div> </div>
Line height is set by a larger line, left-side . However, I want the height of the right side to be the same.
It seems intuitive, but it does not work
.left-side { background-color: blue; } .something { height: 100%; background-color: red; } .row { background-color: green; }
http://jsfiddle.net/ccorcos/jz8j247x/
html css twitter-bootstrap
Chet Aug 08 '14 at 22:30 2014-08-08 22:30
source share