<div class="wrapper">
<div class="left">LEFT</div>
<div class="center">CENTER</div>
<div class="right">RIGHT</div>
</div>
.wrapper {
position: relative;
width: 100%;
height: 50px;
background-color: bisque;
}
.left {
float: left;
}
.center {
position: absolute;
width: 100%;
height: 100%;
text-align: center;
}
.right {
float: right;
}