Someone attempted to modify the following fiddle but ended up making the wrong changes!
Regrettably, I am unsure of the individual responsible for this edit.
It may have been spezzino, however, I cannot be certain:
HTML
<div class="wrap">
<div class="left">
left
</div>
<div class="right">
right
</div>
<div class="center">
center
</div>
</div>
CSS
.wrap{
text-align:center;
}
.left{
float: left;
background:grey
}
.right{
float: right;
background:red
}
.center{
text-align:left;
background:green;
margin:0 auto;
display:inline-block
}
http://jsfiddle.net/66fCm/136/
In any case, this solution functions flawlessly :-)
Would someone kindly mark this response as correct since I am unable to do so myself due to low reputation.