Reprots

by Ben

HTML

<div id="parent">
  <div id="narrow">
    Contains left gridview
  </div>
  <div id="parent">
    <div id="narrow">
      Gridview
    </div>
    <div id="wide" class="Fixed">
      <div>
        FormView
      </div>
      <div>
        Contains label and textbox
      </div>
    </div>
    <br />
    <div>
      Contains right gridview
    </div>
    <hr />
    <div>
      Contain textbox and button
    </div>
  </div>
</div>

CSS

#parent {
      display: inline-flex;
    }
    
    #narrow {
      width: 1000px;
      margin-right: 20px;
    }
    
    #wide {
      width: 100%;
    }
    
    .FullWidth {
      width: 100%;
    }
    
    .Fixed {
      position: fixed;
    }