jcadima
1/26/2017 - 9:31 PM

Full width 2 columns with different backgrounds

Full width 2 columns with different backgrounds


http://stackoverflow.com/questions/33564131/bootstrap-full-width-with-2-different-backgrounds-and-2-columns


<div class="fullwidth">

  <div class="cell colgray">LEFT COLUMN</div>
  <div class="cell colwhite">RIGHT COLUMN</div>
  
</div>


<style>
  
.fullwidth {
    display:table;
    width:100%;
}
.cell{
    display:table-cell;
    vertical-align:top;
}

.colgray{
    background:green;
}

.colwhite{
    background:yellow;
}  
  
</style>