Here you go. Set justify-content: space-between
on the flex container.
.main { _x000D_
display: flex; _x000D_
justify-content: space-between;_x000D_
}_x000D_
.a, .b, .c { background: #efefef; border: 1px solid #999; }_x000D_
.b { text-align: center; }
_x000D_
<h2>With title</h2>_x000D_
<div class="main">_x000D_
<div class="a"><a href="#">Home</a></div>_x000D_
<div class="b"><a href="#">Some title centered</a></div>_x000D_
<div class="c"><a href="#">Contact</a></div>_x000D_
</div>_x000D_
<h2>Without title</h2>_x000D_
<div class="main">_x000D_
<div class="a"><a href="#">Home</a></div>_x000D_
<!-- <div class="b"><a href="#">Some title centered</a></div> -->_x000D_
<div class="c"><a href="#">Contact</a></div>_x000D_
</div>
_x000D_