Check out this fiddle: http://jsfiddle.net/Rpdr9/2175/
I have two inline divs using Bootstrap.
I would like to insert a border between them that extends 100% of the parent div's height:
Currently, it matches the card size (yellow box). How can I achieve this?
<div class="panel panel-default">
<div class="panel-body all">
<div class="row clear">
<div class="col-md-2 sp-right border-right">
<div class="tbTile yellow sp-inline">
<span> phase</span>
</div>
</div>
</div>
<div class="col-md-10 sp-right "> Something </div>
</div>