na čo to potrebuješ? možno existuje lepšie riešenie
popripadne JS riešenie, taká priteplená funkcia narýchlo
Kód:
<script>
function remainder(){
cont = document.getElementById('group');
divs = cont.getElementsByTagName('div');
if(divs.length == 3){
nw = (cont.clientWidth-divs[1].clientWidth)/2;
divs[0].style.width=nw+'px';
divs[2].style.width=nw+'px';
}
}
window.onload = remainder;
window.onresize = remainder;
</script>
<style>div{float:left;}</style>
<body>
<div id="group" style="width:100%">
<div>lavy</div>
<div style="width:1000px">stredny</div>
<div>pravy</div>
</div>
</body>