<div>
<div>1111</div>
<div>22222222222222222222222</div>
<div>33333333333</div>
</div>
div {
display: flex;
}
.container {
position: relative;
justify-content: space-between;
flex-direction: row;
width: 100%;
}
.center {
width: 100%;
justify-content: center;
position: absolute;
}
<div class="container">
<div>left</div>
<div class="center">
<div>
center block
</div>
</div>
<div>right</div>
</div>