how to fill div content till the right div?

Objetreptpype

New Member
Hello my question is how to fill the div with the min-width (Central one) till the right div and not destroy himCSS .test { height : 800px; display: inline-block; }HTML\[code\]<body style="background-color:#e5e5e5;margin: 0"> <div> <div style=" height : 37px; width : 100%; background-color : #3b5998; -webkit-box-shadow : 0 2px 2px -2px rgba(0, 0, 0, .52); border-bottom : 1px solid black; "> <div style="padding-top: 6px;margin-left: 76px;"> <img src="http://stackoverflow.com/questions/15901139/images/logo-text.png" /> </div> </div> <!-- --> <div> <div class="test" style="float : left;width: 130px;background-color : #e5e5e5"></div> <div class="test" style="min-width: 800px;background-color: white;"></div> <div class="test" style="float : right;width: 130px;background-color : red"></div> </div></div><div style="background-color : #e5e5e5;width : 100%;height: 100px"></div></body>\[/code\]FULL CODE[1] http://pastebin.com/phrDAbPwThanks
 
Top