Home:ALL Converter>Stretching color column above the container to the bottom of the screen bootstrap

Stretching color column above the container to the bottom of the screen bootstrap

Ask Time:2016-02-16T20:31:26         Author:JMF

Json Formatter

I need to pass the background of the column above the container until the end of the screen. As I can do with bootstrap and is responsive? I am now doing with a width but my scroll appears.

I attached a photo

enter image description here

<div class="portlet-layout row-fluid">
         <div class="container">
             <div class="col-sm-9">
                <div class="row-fluid portlet-column" id="column-2">
                    $processor.processColumn("column-2", "portlet-column-content portlet-column-content-first")
                </div>
            </div>
             <div class="col-sm-3 no-float">
                <div class="portlet-column portlet-column" id="columnaColor-3">
                    $processor.processColumn("columnaColor-3", "portlet-column-content portlet-column-content")
                </div>
                 <div class="portlet-column portlet-column-last" id="column-4">
                    $processor.processColumn("column-4", "portlet-column-content portlet-column-content-last")
                </div>
             </div>
         </div>
    </div>

#columnaColor-3{
    background: #2e373c;
}

Author:JMF,eproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/35432698/stretching-color-column-above-the-container-to-the-bottom-of-the-screen-bootstra
yy