Started a project involving a 3-column div at the top - 300px/dynamic/350px. The right div falls below the others: http://jsfiddle.net/tspencer103/b49mfno4/1/.
I have tries several suggestions here like http://jsfiddle.net/22YBU/. No luck. Any suggestions? Thanks.
 div #div_1 {
   float: left;
   height: 50px;
   background-color: red;
   width: 300px;
 }
 div #div_2 {
   height: 50px;
   margin: 0px 350px 0px 300px;
   background-color: green;
   text-align: center;
 }
 div #div_3 {
   float: right;
   height: 50px;
   background-color: blue;
   width: 350px;
 }
 <div id="container">
    <div id="div_1">LEFT STATIC 300px</div>
    <div id="div_2">CENTER DYNAMIC</div>
    <div id="div_3">RIGHT STATIC 350px</div>
 </div>
 
     
    